Webastor - Programming Tips and Tricks

Programming language => Sql => Topic started by: Reggie on October 29, 2014, 02:57:47 AM

Title: Can you remove rows from a table based on values from another table?Explain?
Post by: Reggie on October 29, 2014, 02:57:47 AM
Hello everyone, I would like to ask you a little problem if you do not mind? can you remove rows from a table based on values from another table? explain I thank you please help me quickly.
Title: Re: Remove rows
Post by: Owain on June 05, 2017, 05:18:56 PM

DELETE Table1
FROM Table1
INNER JOIN Table2 ON Table1.ID = Table2.ID