2013年9月10日 15:44:36
update `zzb_table` set status = 1 where `link` != '';
不要用
update `zzb_table` set status = 1 where `link` is not null;
2013年9月10日 15:44:36
update `zzb_table` set status = 1 where `link` != '';
不要用
update `zzb_table` set status = 1 where `link` is not null;
转载于:https://www.cnblogs.com/iLoveMyD/p/3312327.html