日期大于指定日期(日期,月份,年份)

时间:2013-10-21 08:03:33

标签: sql sqlite

对于包含int字段日期,月份和年份的数据库表,查询大于指定日期的行的最佳方法是什么?

2 个答案:

答案 0 :(得分:2)

你可以这样做:

select dateofbirth from customer Where DateofBirth  BETWEEN date('1004-01-01') AND date('1980-12-31');  

select dateofbirth from customer where date(dateofbirth)>date('1980-12-01');

select * from customer where date(dateofbirth) < date('now','-30 years');

请参阅sqlite select with condition on date

答案 1 :(得分:1)

通过简单的算术,您可以进行如下选择:

SELECT * FROM t WHERE year*10000+month*100+day>20131021;