Using TSQL I have a simple select statement(see below).
SELECT
tblA.EmpID,
tblA.Address
FROM
tblA
The address field has data that is all in uppercase like so:
10 NEW ROAD
However, I want the data to appear like so:
10 New Road
How is this possible to always capitalize the 1st letter after a space in TSQL?
SELECT
tblA.EmpID,
tblA.Address
FROM
tblA
The address field has data that is all in uppercase like so:
10 NEW ROAD
However, I want the data to appear like so:
10 New Road
How is this possible to always capitalize the 1st letter after a space in TSQL?