G
Guest
I need to delete records from several tables but I get an error about
selecting the table where to delete these records?
This is an example of one of the tables I need to delete these records from.
I first did a select query (OrderID's To Delete)
I then tried creating my delete query using that query
DELETE dbo_tblOrderExtraCharges.OrderID
FROM [OrderID's To Delete] INNER JOIN dbo_tblOrderExtraCharges ON [OrderID's
To Delete].OrderID = dbo_tblOrderExtraCharges.OrderID;
Any help would be appreciated.
selecting the table where to delete these records?
This is an example of one of the tables I need to delete these records from.
I first did a select query (OrderID's To Delete)
I then tried creating my delete query using that query
DELETE dbo_tblOrderExtraCharges.OrderID
FROM [OrderID's To Delete] INNER JOIN dbo_tblOrderExtraCharges ON [OrderID's
To Delete].OrderID = dbo_tblOrderExtraCharges.OrderID;
Any help would be appreciated.