mysql中查询时间为空的数据

时间:2016-01-25 22:52:06   收藏:0   阅读:371

mysql表中datetime类型的字段名createtime,查询所有createtime为空的语句如下:

select * from yy_business where ISNULL(createtime) is TRUE
update yy_business set createtime=‘2015-01-21 17:24:58‘ where ISNULL(createtime) is TRUE

原文:http://www.cnblogs.com/sdfiggtx/p/5158888.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!