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.
我需要一个 sql 查询来找出两个日期之间的差异。我已经尝试过 between 子句查询,但它包括开始日期。但我需要一个排除开始日期的查询。所以请给我一个不同的。
您可以使用DATEDIFF方法
例如:
SELECT DATEDIFF(SELECT DATE_ADD(start_date,INTERVAL 1 DAY),end_date);
如果您想排除 start_date,或者根据您的要求更改间隔