我想将delete_flag更新为具有列名称,emailId,delete_flag的表A的1。 其中name和emailId等于表B cand_name和email_Address,其中ID列表中的B.Id
我的查询是
update A set delete_flag=1 where name,emailId=(select cand_name ,email_Address from B where B.Id in(2,222,555,888)
我需要在flasksql炼金术中编写以上查询。