SQL写得少,
写一次记一次。:)
比如,将id在3134和8138之间的记录的status状态置为0,
用如下语句可实现。
update Server set status = 0 where id>=3134 and id<=8138;
SQL写得少,
写一次记一次。:)
比如,将id在3134和8138之间的记录的status状态置为0,
用如下语句可实现。
update Server set status = 0 where id>=3134 and id<=8138;