how to select a field with firstletter as capital and
remaining are small letters
Answer Posted / k.vanitha
CREATE TABLE Employee (NAME VARCHAR(20), SALARY int);
INSERT INTO employee VALUES (
'RAMESH',
9000);
INSERT INTO employee VALUES (
'RAJESH',
10000);
SELECT Left(upper(NAME),1) +
lower(substring(NAME,2,len(NAME))) FROM employee
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Tell me the phases a transaction has to undergo?
What are the advantages of sql azure?
What is the significance of master, tempdb and model databases?
What does top operator do?
How many types of objects are there?
What is normalization of database?
How adventureworkslt tables are related?
How many types of subqueries are there in sql server?
Explain data warehousing in sql server?
What method is used by the Command classes to execute SQL statements that return single values?
What is the difference between delete and truncate statements?
What is query and its types?
how to determine the service pack currently installed on sql server? : Sql server database administration
Do you know what is xpath?
How to move database physical files in ms sql server?