I know this is basic but I am new to mySQL. I have 2 tables, both have urls held in a CHAR column. I need to delete all the entries in table 1 that have duplicate urls in table 2.
I tried:
DELETE FROM spQueue WHERE spQueue.url = spDone.url
but no joy it just tells me there is no such table as spDone, but I can see the damn thing.
Any help would be greatfully appreciated.