日期取年.月.日 select id, phone,time,year(time),month(time), DAY(time),TIME(time) from user where phone='xx' #分别取年.月.日.时间select id, phone,time,year(time) from user where phone='xxxxxx' #取年 select id, phone,time,month(time) from user where phone='xxxxxx' #取
有时需要将日期类型值转换成毫秒值,有时也要将毫秒值转换成日期,为了更方便,满足查询的需要. 现在,新建一张数据库表t_stu_info,并向表里插入数据 use test; show tables; create table t_stu_info( id int not null primary key, stu_name varchar(20), stu_date timestamp, stu_age int(3), stu_sex varchar(5) ); insert into t_st
碰到一个MYSQL的问题,表logstatb中moment字段的内容是"年-月-日 时:分:秒",需要查询匹配"年月日"或"时:分:秒"即可的数据条目,这个时候就可以通过下面的SQL语句实现: select * from logstatb where date_format(moment,'%Y%m%d')= '20080227'(匹配"年月日")select * from logstatb where date_format