BrenoAguiar
IS-IT--Management
I'm trying to delete some records from my table "Btable" that has the same field [street] value in another table "owners".
I tried:
Delete *
From Btable
WHERE Btable.street=Owners.street
and also
Delete *
From Btable Inner join owners ON btable.street = owners.street
WHERE Btable.street=Owners.street
But I'm getting errors saying that I'm supposed to specify the table to have the records deleted and when I specify its says it can't delete the records from the table.
Any help?
I tried:
Delete *
From Btable
WHERE Btable.street=Owners.street
and also
Delete *
From Btable Inner join owners ON btable.street = owners.street
WHERE Btable.street=Owners.street
But I'm getting errors saying that I'm supposed to specify the table to have the records deleted and when I specify its says it can't delete the records from the table.
Any help?