我有一个充满很多行的表,我需要选择到目前为止不到一年的所有行。
表格(称为orders)具有DateTime名为的列order_date,该列确定下订单的时间。
orders
DateTime
order_date
我该如何选择order_date从现在到一整年以前所有的记录?
select * from orders where order_date >= DATE_SUB(NOW(),INTERVAL 1 YEAR);