MacrosTheBlack
Programmer
If I have 2 tables (eg called Product + orders) and I want to delete all orders which do not have a product within the product table how could i do it assuming both tables have a "ProdID" field.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
delete
from orders
where ProdID not in
(select ProdID from products)