I am using mysql I want first letter of firstname capital and remaining characters in lower case the query i am using is
select UPPER(LEFT(FirstName,1))+LOWER(SUBSTRING(FirstName,2,LENGTH(FirstName))) FirstName from colliers;
this gives answer 0, but it works perfectly in SQL server ..