2011-03-08 80 views

回答

10
update test set value=value+1 where value < 100 
1
update table set value = (value + 1) where column <= 100; 
相關問題