Why not just do this: DELETE FROM Ads WHERE uid IS NULL
On Apr 9, 2005 10:26 AM, Johnny Le <[EMAIL PROTECTED]> wrote: > Hi, > > My database is a mess. The programmer who did this didn't delete all the > user related records once the users deleted their accounts. So I am trying > to clean up. I need to delete all records from the result of this select > statement: > > SELECT a.uid > FROM Ads a LEFT JOIN Members m > ON (a.uid=m.uid) > WHERE m.uid IS NULL > > How do I do that? I tried: > DELETE FROM Ads where uid IN (SELECT a.uid > FROM Ads a LEFT JOIN Members m > ON (a.uid=m.uid) > WHERE m.uid IS NULL) > > but that didn't work. > > Johnny > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202083 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

