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.
order_status フィールドの値を、1 から 700 の間のすべての order_id の 3 に変更する SQL ステートメントは何でしょうか。
Mysql データベース名は test_test です
助けてくれてありがとう。
update tablename set order_status = 3 where order_id between 1 and 700
ご質問の言葉とほぼ同じです。
USE test_test; UPDATE `order` SET order_status = 3 WHERE order_id BETWEEN 1 AND 700