Nếu bạn muốn lấy dữ liệu từ một vài bảng trong một truy vấn thì bạn nên sử dụng THAM GIA sự thi công. Ví dụ:
SELECT
insent.id,
notifications.id
FROM insent
JOIN notifications ON notifications.insent_id = insent.id
nếu bạn không muốn, bạn phải xóa notifications.id
trường từ danh sách trường
SELECT
insent.id
FROM insent
WHERE insent.id IN (
SELECT insent_id FROM notifications
)