79497978

Date: 2025-03-10 12:27:06
Score: 0.5
Natty:
Report link
select empid, lastname
from HR.Employees
where lastname COLLATE Latin1_General_Cs_AS = LOWER(lastname);

In this problem I wanna to find last names in which starts with lower case letter so,

I use from COLLATE that is Case sensitive(Cs) and Accent sensitive (As).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Samane