我創建瞭如下表:如何在MySQL中選擇一個範圍內的日期?
create table example
(
code varchar(7),
date date,
CONSTRAINT pk_date PRIMARY KEY (code)
);
我插入的數據:
insert into example(code, date)
values('001','2016/05/12');
insert into example(code, date)
values('002','2016/04/11');
insert into example(code, date)
values('003','2017/02/03');
的問題是:如何從今天選擇上一個日期到五一個月?
'mysql,oracle,postgresql'。當真? – 1000111
@ 1000111標題上寫着「MySQL」,所以我刪除了其他標籤。 –
*從今天起五個月前的日期*是什麼意思? –