0

mysql> テーブル product_tb set quantity=90 where pid=2; を更新します。

エラー 1064 (42000): SQL 構文にエラーがあります。使用する正しい構文については、MySQL サーバーのバージョンに対応するマニュアルを確認してください。

4

2 に答える 2

2

tableここでは必要ないため、クエリからキーワードを削除します。

これを試して::

Update product_tb set quantity=90 where pid=2
于 2013-07-10T06:04:44.873 に答える
0
Update table product_tb set quantity=90 where pid=2;

Update product_tb set quantity=90 where pid=2;
于 2013-07-10T06:03:40.467 に答える