对于包含int字段日期,月份和年份的数据库表,查询大于指定日期的行的最佳方法是什么?
答案 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');
答案 1 :(得分:1)
通过简单的算术,您可以进行如下选择:
SELECT * FROM t WHERE year*10000+month*100+day>20131021;