Hello,
I have a field called 'name' I want to split that into 'last_name' and 'first_name'. I know how to do this in PHP, but no idea how by just using mysql?
Example:
name: Smith John
I want to be:
name: Smith John
last_name: Smith
first_name: John
Does anybody know the sql statement necessary for this?
Thx.