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 acid mean in sql server?
Can two tables share the same primary key?
To automatically record the time on which the data was modified in a table, which data type should you choose for the column?
Why is replication required on the sql server?
What is Sqlpaging in SqlServer 2005 ?
explain extended properties
What is table valued function and scalar valued functions?
Does partitioning improve performance?
What does it mean if @@cursor_row returns a negative number?
Why use triggers?
What are date and time data types in ms sql server?
what is checksum in sql server.........???
What is a trace frag? Where do we use it?
How to convert a table data in XML format in sql server?
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?