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.
我有一个带有“type”字段的表(配置)和另一个带有“status”字段的表(users)。
“状态”字段的某些值是空白的。
仅当另一个表中的字段“类型”等于“3”时,我才想将字段“状态”更改为“已应用”。
你能解释一下如何做这个查询吗?
尝试这个
update table2 inner join table1 on table1.id=table2.id and table1.type=3 set status=applied
id 是两个表中的公共字段