SQL Capitalize words in SQL (Display data first letter uppercase rest lowercase) - 08.06.18 | 22.11.19 - ErcanOPAK SELECT UPPER(LEFT(colname,1)) + LOWER(RIGHT(colname, LEN(colname) - 1)) FROM tablename Related posts:How to use Replicate function for masking in SQL?SQL Tip: "NULL" should not be compared directlySQL 'string_split()' functionReset the Identity on table in MSSQL Post Views: 153