PHP and MySQL smallest and largest possible date

后端 未结 6 571
挽巷
挽巷 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 06:51

    Maybe get the max and min values from your table first:

    SELECT * FROM table WHERE date BETWEEN (SELECT MIN(date) FROM table) AND (SELECT MAX(date) FROM table)
    

提交回复
热议问题