I have the following SQL query:
SELECT T1.*
FROM Table1 T1, Table2 T2
WHERE T1.Key1 = T2.Key1
AND T1.Key2 = T2.Key2
AND T2.DateField = '2007-May-10'
Can someone tell me how to modify this query to delete the records returned by it? SQL does not permit me to use 'DELETE T1.*'
Aqua-Soft Forums