M
Mark
I am creating an append query, where I want to pull some
data (including date field) from a table, change the dated
to a new date & then append the data back into that table.
I simplified the original append statement below but need
to know what to add to change the date prior to appending:
INSERT INTO
( [Student Number], [Name], [Date] )
SELECT ( [Student Number], [Name], [Date] )
FROM
;
Can someone tell me how to do this? Thank You.
data (including date field) from a table, change the dated
to a new date & then append the data back into that table.
I simplified the original append statement below but need
to know what to add to change the date prior to appending:
INSERT INTO
SELECT ( [Student Number], [Name], [Date] )
FROM
Can someone tell me how to do this? Thank You.