I am trying to manipulate a piece if data I am pulling in. Right now the name is pulling in as First Name Last Name
I would like to pull it in as Last Name, First Name
.
Query
SELECT name from [TBL_Customers] order by name
The name
column has the first and last name contained in it, with a space separating the two.
What is the best practice to achieve Last Name, First Name
?