hi...i have created a form where users enter data then their info is sent to a tempusers_tbl...a page is displayed showing what they have entered; if they agree they submit the info and the data should transfer to the users_tbl from the tempusers_tbl...i am using ACCESS as my db and ASP as the scripting lang...here is what i have...
DIM sSQL
sSQL = "Insert into users_tbl select name from (select name from tempusers_tbl tb where NOT EXISTS " & _
"(select null from users_tbl where name = tb.name))"
...this doesn't want to work...
thanks for you time...
DIM sSQL
sSQL = "Insert into users_tbl select name from (select name from tempusers_tbl tb where NOT EXISTS " & _
"(select null from users_tbl where name = tb.name))"
...this doesn't want to work...
thanks for you time...