本文共 121 字,大约阅读时间需要 1 分钟。
SQL写得少,
写一次记一次。:)
比如,将id在3134和8138之间的记录的status状态置为0,
用如下语句可实现。
update Server set status = 0 where id>=3134 and id<=8138;
转载地址:http://qgixa.baihongyu.com/