D
Dave
The following will work in T-SQL:
DELETE FROM orders
FROM orders o INNER JOIN orderdetail od ON o.orderid=od.orderid
WHERE od.billitem='a2220'
But I get an error referencing the FROM clause when I try it in Acesss.
How do I write a DELETE in Access that references more than one table?
DELETE FROM orders
FROM orders o INNER JOIN orderdetail od ON o.orderid=od.orderid
WHERE od.billitem='a2220'
But I get an error referencing the FROM clause when I try it in Acesss.
How do I write a DELETE in Access that references more than one table?