Meng小羽 4年前

修改理由:

单词错误quanntity

详细描述:

update products set quanntity = 2 where id = 1;


此投稿已在 4年前 合并。

内容修改:

红色背景 为原始内容

绿色背景 为新增或者修改的内容

OldNewDifferences
3232```sql
3333begin;
3434select quantity from products where id = 1 for update;
35 update products set quanntity = 2 where id = 1;
 35update products set quantity = 2 where id = 1;
3636commit;
3737```
3838