0
I must delete the ids of a table that are in common with the data of another table but I don't understand how
2 Respuestas
+ 1
maybe somethinng like this would work.
delete a
from table1 as a
inner join table2 as b
on a.id = b.id;
+ 1
What exactly did you mean by "IDs that are common with another table"?