0

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

4

2 回答 2

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 选择

于 2013-10-21T08:09:58.207 回答
1

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

SELECT * FROM t WHERE year*10000+month*100+day>20131021;
于 2013-10-21T08:09:32.873 回答