Q:

Write down the query to print first letter of a Name in Upper Case and all other letter in Lower Case.

0

Write down the query to print first letter of a Name in Upper Case and all other letter in Lower Case.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Select UPPER(SUBSTRING(Firstname, 1,1))+ 
LOWER(SUBSTRING(Firstname, 2, Len(FirstName)-1))As Firstname from tblStudent

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Top 100 SQL server queries Interview questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write down the query to display all student name i... >>
<< What would be the output of the follwing query?...