The following was posted in another forum. It's to delete all Table1 records not found in Table2. How can this be done in ASA since it complains about the asterisk?
DELETE Table1.*
FROM Table1 LEFT JOIN Table2
ON Table1.YourField1 = Table2.YourField2
WHERE Table2.YourField2 Is Null;
DELETE Table1.*
FROM Table1 LEFT JOIN Table2
ON Table1.YourField1 = Table2.YourField2
WHERE Table2.YourField2 Is Null;