how to select a field with firstletter as capital and
remaining are small letters
Answer Posted / radhika
SELECT Left(upper(<field_name>) , 1) + substring(lower
(<field_name>, 2, len
(<field_name>))
FROM <table_name>
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
How can you check the version of sql server?
Explain the various types of concurrency problem?
How can we determine what objects a user-defined function depends upon?
what are the basic functions for master, msdb, model, tempdb and resource system databases? : sql server database administration
Mention the command used to rename the database.
What is clustered vs nonclustered index?
What is history table in sql server?
How many types of triggers in sql server?
What are the built in functions in sql server?
How to convert numeric expression data types by assignment operations?
Explain Normalization and DE normalization
What is difference between Datepart() and Datename() in SqlServer?
How to delete an existing row with delete statements in ms sql server?
What are system databases into sql server (2005/2008)?
How to create a login account in ms sql server to access the database engine using "create login" statements?