Hi,
I am storing some sample data in two tables that reference. When a certain condition occurs, I want that data in those two tables deleted. I'm having a hard time removing those records. Here is my SQL code behing the delete query
DELETE fname_table.FormID, fname_table.name_id, fname_table.first_name
FROM fname_table INNER JOIN dump_temp ON fname_table.FormID=dump_temp.FormID
WHERE ((dump_temp.call_back)=No);
This is for one of the tables. It's the same query for my other table, just different table names. I'm getting the error message: Specify the table containing the records you want to delete
I am storing some sample data in two tables that reference. When a certain condition occurs, I want that data in those two tables deleted. I'm having a hard time removing those records. Here is my SQL code behing the delete query
DELETE fname_table.FormID, fname_table.name_id, fname_table.first_name
FROM fname_table INNER JOIN dump_temp ON fname_table.FormID=dump_temp.FormID
WHERE ((dump_temp.call_back)=No);
This is for one of the tables. It's the same query for my other table, just different table names. I'm getting the error message: Specify the table containing the records you want to delete