Can you help me with a query to separate name into two columns firstname, lastname?
So from one column = name i
to two columns firstname, lastname
So from one column = name i
to two columns firstname, lastname
UPDATE Table
SET
FirstName = SUBSTRING_INDEX(FullName, ' ', 1),
LastName = SUBSTRING_INDEX(FullName, ' ', -1)
Thank you!
and then if there is a middle name example Mary Beth Olson OR is this accomplished more efficiently in a comma delimited text file or another method?
If there is a middle name then it would be included in the last name with this script. You could probably remove the middle name with a script that checks if there is a space in the last name.
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.