|
update table set name="a" where id=0;
update table set name="a" where id=1;
.
.
.
update table set name="a" where id=9999;
update table set name="a" where id=10000;
和
update table set name="a" where id between 0 and 10000
速度上那个快呢?
是一个什么级别上的差异呢,比如快1000倍?或者其他什么的。
多谢了 |
|