how to select a field with firstletter as capital and
remaining are small letters
Answer Posted / vidit tyagi
SELECT Left(upper(<field_name>) , 1) + lower(substring
(<field_name>,2,len(<field_name>))) AS SomeName
FROM <table_name>
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is your recommendation for a query running very slow? : sql server database administration
What is set nocount on?
Detail about query optimizer?
What is raid and what are different types of raid levels?
Can multiple columns be used in sql group by clause in ms sql server?
what are user defined datatypes and when you should go for them? : Sql server database administration
What is sql server query analyzer?
How can we rewrite sub-queries into simple select statements or with joins?
What is the difference between Normalization and De-normalization?
What are the common performance issues in sql server?
Explain transaction server explicit transaction?
What is a non equi join?
What is the Main Difference between ACCESS and SQL SERVER?
How do you delete duplicate records in sql server?
Does a server store data?