create table article (
-> id int,
-> create_date datetime,
-> name varchar(20)
-> );
insert into article (id,create_date,name) values
-> (1,20190101113031,'平凡的世界'),
-> (2,20190203103032,'钢铁是怎样炼成的'),
-> (3,20190304103000,'假如给我三天光明'),
-> (4,20220309113020,'朗读者');
select * from article where create_date between '2019-1-1 10:30:00' and '2019-11-10 4:02:00';