Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 MySQL 数据库中获取数据的日期范围,例如月份和年份?例如,如果数据库中的表有 2012 年 2 月至 2013 年 1 月的数据记录,我如何知道存储数据记录的日期范围?
使用查询
select min(date_column), max(date_column) from your_table