mysql日期时间比较简单实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-12 16:33:28 浏览: 评论:0
日期比较,mysql,代码如下:
- select * from tb where c> date_format('2007-07-06','%Y%m%d') and c <= date_format('2007-07-09','%Y%m%d');
- select * from tb where c> date('2007-07-07') and c< date('2007-07-09')
STATDAY是形如2006031001的日期数据字段,代码如下:
- select * from LOGINSTAT where STATDAY> date_format(curdate()-1,'%Y%m%d') and STATDAY >= date_format(curdate(),'%Y%m%d');或者:select * from LOGINSTAT where STATDAY> date_format(curdate()-1,'%Y%m%d%H') and STATDAY >= date_format(curdate(),'%Y%m%d%H');
其他用法,代码如下:
- select * from LOGINSTAT where STATDAY >= date_format('$date1','%Y%m%d%H') and STATDAY < date_format('$date','%Y%m%d%H')
mysql数据库中存的时间格式为2008-12-28 18:08:08,现在先要从一个一个结果集rs中获得一个日期时间,我先用rs.getDate()方法试着获取时间,结果只有年月日,无法获取小时、分和秒,最后解决的方法是如下代码:
- Date time1=new Date(rs.getTimestamp("pub_time").getTime());
- SimpleDateFormat formattime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); --phpfensi.com
- String pubtime=formatime.format(time1);
获得的pubtime为String型,在sql语句中用mysql的时间函数date_format('time','format')转换,代码如下:
- String sqlstr="select * from do_document where pub_time<date_format('"+pubtime+"','%Y-%m-%d %H:%i:%s') order by pub_time desc limit 0,1";
然后执行该sql语句就查到了满足条件的记录.
Tags: mysql日期时间 mysql时间比较
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)