1つのクエリで少数のテーブルからデータを取得する場合は、参加 工事。例:
SELECT
insent.id,
notifications.id
FROM insent
JOIN notifications ON notifications.insent_id = insent.id
不要な場合は、notifications.id
を削除する必要があります フィールドリストからのフィールド
SELECT
insent.id
FROM insent
WHERE insent.id IN (
SELECT insent_id FROM notifications
)