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.
2 番目のテーブルに結合する ID とキーワードがある 2 つのテーブルを結合する最良の方法は何ですか?
私の試み:
SELECT id, name FROM table1 LEFT JOIN table2 ON (table1.id = table2.id AND table2.id = 'myKeyword') WHERE ...
WHERE句でキーワードの検索・結合を処理する方法はありますか?
table2.id = 'myKeyword'where 句を配置すると、LEFT JOIN
table2.id = 'myKeyword'
LEFT JOIN
あなたが持っているので、これは非常に適切です。
たぶん、もう少し詳細に、あなたが何を得ているのかを見ることができます.
SELECT {column_list} FROM table1 t1, table2 t2 WHERE t1.id = t2.id AND {some_column_from_either_table} = 'myKeyword';