PHP and MySQL smallest and largest possible date

后端 未结 6 541
挽巷
挽巷 2021-01-18 06:42

What is the largest date PHP and MySQL recognizes?

I mean, I have different values for different timeline and I want to make them all as BETWEEN selects

6条回答
  •  深忆病人
    2021-01-18 07:15

    Could you do it like this:

    SELECT * FROM table WHERE date < '2011-10-01';
    SELECT * FROM table WHERE date BETWEEN '2011-10-02' AND '2011-10-10';
    SELECT * FROM table WHERE date > '2011-10-11' 
    

提交回复
热议问题