我有以下 sql 查询:
UPDATE table_b
SET score=1, score_a = 1
WHERE id = (select id from table_a where user_id ="Ken")
我想为“Ken”、“Joe”等多个用户更新 score 和 score_a。
谁能帮我告诉我该怎么做?
我有以下 sql 查询:
UPDATE table_b
SET score=1, score_a = 1
WHERE id = (select id from table_a where user_id ="Ken")
我想为“Ken”、“Joe”等多个用户更新 score 和 score_a。
谁能帮我告诉我该怎么做?