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
Your company has 50 branches all over the country all the branches, including the head office have sql server as the database every night all 50 branches upload certain information to the head office which replication topology is best suited for the above scenario?
Is it true that rules do not apply to data already existing in a database at the time the rule is created?
What is a constant or literal in ms sql server?
How to send a ssrs report from ssis?
Does partitioning help performance?
What is the sql server 2000 version number?
What is field with example?
What are four major operators that can be used to combine conditions on a where clause?
Explain transaction server auto commit?
How to list all triggers in the database with sys.triggers in ms sql server?
What is the difference between having clause and where clause in sql server?
List the ways in which dynamic sql can be executed?
What are the differences between having and where clause.
What are the system database in sql server 2008?
how to create a scrollable cursor with the scroll option? : Sql server database administration