S
SinCity
I am trying to convert this SELECT query into an UPDATE query...
SELECT Left([BFirstName2],InStr([BFirstName2]," ")) AS BFirstName,
Mid([BFirstName2],InStr([BFirstName2]," ")+1) AS BLastName
FROM [77777 Show];
I tried simply replacing SELECT with UPDATE which is what I thought was
needed to be done. What am I missing?
What I am trying to do is UPDATE the data in table 77777 with the results of
the SELECT query.
Help!
SELECT Left([BFirstName2],InStr([BFirstName2]," ")) AS BFirstName,
Mid([BFirstName2],InStr([BFirstName2]," ")+1) AS BLastName
FROM [77777 Show];
I tried simply replacing SELECT with UPDATE which is what I thought was
needed to be done. What am I missing?
What I am trying to do is UPDATE the data in table 77777 with the results of
the SELECT query.
Help!