Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can't delete from multiple tables in access 2000

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I'm trying to delete entire records in 2 tables in an access 2000 database, but it's not working. I don't get any errors, the records are simply not being deleted. Syntax follows:

delete * from users inner join answers on users.user_uid = answers.user_uid where users.user_uid = [user id]


If I change the statement to delete from one table it works, so I know the "where" clause is correct.
 
DELETE FROM users inner join answers on users.user_uid = answers.user_uid where users.user_uid = [user id]

you don't use a *

HTH Joe Miller
joe.miller@flotech.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top