首页 > mysql > mysql date类型字段查询和插入格式

mysql date类型字段查询和插入格式

2012年6月29日 发表评论 阅读评论

插入

INSERT INTO shengqi(id,content,mm) VALUES ('1','升 7:36<br/>降 16:59','2012-01-1');

查询:

select id,content from  shengqi where DATE_FORMAT(mm,'%Y-%m') =  '2012-01';

select id,content from  shengqi where mm=  '2012-01-01';

分类: mysql 标签: , ,
  1. 本文目前尚无任何评论.
  1. 本文目前尚无任何 trackbacks 和 pingbacks.