how to select a field with firstletter as capital and
remaining are small letters
Answer Posted / amit shukla
select upper(left(h01_first_name,1))
+lower(substring(rtrim(h01_first_name),2,50)) as name from
<table name>
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How self join is different from outer join?
How to loop through result set objects using odbc_fetch_row()?
What is use of attribute hierarchy optimized state? : sql server analysis services, ssas
I have all the primary data files, secondary data files as well as logs. Now, tell me can I still restore the database without having a full backup? : sql server database administration
What is exporting and importing utility?
Does sql server 2000 clustering support load balancing?
How to create a trigger for insert only?
Why use view instead of a table?
Explain the dbcc pintable command when would you use it?
How to install sql server 2005 express edition?
What are the different SQL Server Versions you have worked on?
Tell me what is difference between view and materialized view?
What is a collation in ms sql server?
What is a rownum?
What is self join in sql server joins?