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.
フィールド「タイプ」を含む1つのテーブル(構成)と、フィールド「ステータス」を含む別のテーブル(ユーザー)があります。
フィールド「ステータス」の一部の値が空白です。
他のテーブルのフィールド「タイプ」が「3」に等しい場合にのみ、フィールド「ステータス」を「適用済み」に変更したいと考えています。
このクエリの実行方法を教えてください。
これを試して
update table2 inner join table1 on table1.id=table2.id and table1.type=3 set status=applied
id は両方のテーブルの共通フィールドです