简体   繁体   中英

Search and then delete from two tables

I have two tables which have member data (linked with 'member_id' column)

I need to search for all records where the email column ends in '.pl'. I then need to delete all records from the two tables for this (based on the 'member_id').

Is it possible to complete this in one SQL statement?

SELECT member_id
FROM exp_members 
WHERE email LIKE '%.pl'
delete t1, t2
from exp_members t1
join table2 t2 on t1.member_id = t2.member_id
where t1.email LIKE '%.pl'
Delete from Members where Member_id = (SELECT member_id
FROM exp_members 
WHERE email LIKE '%.pl')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM