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:SQL Query to Find and Replace text in a stored proceduresHow to solve the stucking on "Loading Packages" phase for SSMS installationDatabase stuck in “Restoring” stateHow to return only the Date part from SQL Server DateTime datatype Post Views: 153