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]
If I change the statement to delete from one table it works, so I know the "where" clause is correct.