我必须编写脚本来提取电子邮件已被硬退回的所有成员的 ID。为了做到这一点,我写了这个
Select id FROM Members m
Join tbl_memberlanguageid mli on m.ID = mli.MLI_MemberID
Where Cast(dateCreated as date) >= '01-Dec-2014'
and mli.MLI_LanguageID = 3
and EmailHardBounces = 1
然后我需要使用这个 ID 列表将它们从表成员中删除。如果 ID 在该列表中,我如何编写此脚本以便从成员中删除与 ID 相关的所有内容?