4
我有這樣的一個表:MySQL查詢更新所有值+1,其中值小於100
create table `test`
(
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`value` smallint (3) NOT NULL,
我試圖做一個mysql
查詢,在test
表中增加每row
其中value
是小於100.
我有這樣的一個表:MySQL查詢更新所有值+1,其中值小於100
create table `test`
(
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`value` smallint (3) NOT NULL,
我試圖做一個mysql
查詢,在test
表中增加每row
其中value
是小於100.
update test set value=value+1 where value < 100
update table set value = (value + 1) where column <= 100;