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.
table1 から application_id を取得したいのですが、ここで、genre_id = 123 および language_code = EN を table2 から取得します。
表の形式:
表1 :
export_date ジャンル _id アプリケーション_id
表 2 :
export_date application_id language_code
これを試して
SELECT Table1.application_id FROM Table1 INNER JOIN Table2 ON Table2.application_id = Table1.application_id WHERE Table1.genre_id = 123 AND Table2.language_code = 'EN'