Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クエリの結合された各部分がいくつかの結果を返したかどうかを確認したいと思います。
first table result set LEFT JOIN second table result set LEFT JOIN third table result set.
私はすべてのセットの最初の列をチェックすることを考えていました-空かどうかはわかりませんが、それについてはわかりません。
左結合ごとに一致するフィールドの存在を確認できます。一致するものがない場合、フィールドはNULLになります。
例
SELECT CASE WHEN `second table`.joinfield IS NULL THEN 'No Match' ELSE 'Match' END as is_match
等