Question
Separate First/Last names from Field?
Greetings
I have a table in which the first and last names are in one field (?) which I need to get into their own fields.
I would create a new table:
CREATE TABLE new_table
AS
SELECT #SpanExcluding(?, ?)# as last_name
#SpanExcluding(?, ?)# as first_name
FROM existing_table; ?
Any help would be appreciated.
newportri
I have a table in which the first and last names are in one field (?) which I need to get into their own fields.
I would create a new table:
CREATE TABLE new_table
AS
SELECT #SpanExcluding(?, ?)# as last_name
#SpanExcluding(?, ?)# as first_name
FROM existing_table; ?
Any help would be appreciated.
newportri
