من می خواهم تعداد زیادی مشتری جعلی که در سایتم با نام شرکت "google" ثبت نام کرده اند را حذف کنم.
چطور می توانم این کاربران را از دیتابیس حذف کنم؟
چطور می توانم این کاربران را از دیتابیس حذف کنم؟
>
-- Delete "google" customers
update [dbo].[Customer]
set Deleted = 1
where Deleted = 0
and Id in
(
select Id
FROM [dbo].[Customer] c
where exists (select 1
from [dbo].[GenericAttribute] g
where g.[EntityId] = c.Id
and g.[KeyGroup] = 'Customer'
and g.[Key] = 'Company'
and g.[Value] = 'google')
)