SQL Capitalize words in SQL (Display data first letter uppercase rest lowercase) - 08.06.18 | 22.11.19 - ErcanOPAK comment on Capitalize words in SQL (Display data first letter uppercase rest lowercase) SELECT UPPER(LEFT(colname,1)) + LOWER(RIGHT(colname, LEN(colname) – 1)) FROM tablename Read More