I want to delete some data from a table. I want to delete the data that is not included in the inner join
My query so far:
DELETE *how do you say delete what wasn't included in the inner join?*
from dbo.Cloudpie c
inner join dbo.cake p
on c.cakeid = p.cakeid
where cakeid > 1
Thanks in advance for all and any help provided :)!