-1

order_status フィールドの値を、1 から 700 の間のすべての order_id の 3 に変更する SQL ステートメントは何でしょうか。

Mysql データベース名は test_test です

助けてくれてありがとう。

4

2 に答える 2

2
update tablename
set order_status = 3
where order_id between 1 and 700

ご質問の言葉とほぼ同じです。

于 2013-05-06T16:02:37.123 に答える
1
USE test_test;
UPDATE `order` SET order_status = 3 WHERE order_id BETWEEN 1 AND 700
于 2013-05-06T16:02:25.120 に答える