任务:检查表1中的内容字段是否含有图片,如果有,就设置字段标识为1
本想用程序解决,后来琢磨了下 还是sql 简单,直接都数据库,还省得执行了。
create table tmp as SELECT `id` FROM `table1` WHERE `content` LIKE '%<img%'; update table1 set img_sign =1 where id in (SELECT `id` FROM `tmp` ); drop table tmp;
任务:检查表1中的内容字段是否含有图片,如果有,就设置字段标识为1
本想用程序解决,后来琢磨了下 还是sql 简单,直接都数据库,还省得执行了。
create table tmp as SELECT `id` FROM `table1` WHERE `content` LIKE '%<img%'; update table1 set img_sign =1 where id in (SELECT `id` FROM `tmp` ); drop table tmp;
评论 (0)