How to get first day of the next quarter in Mysql

How to get first day of the next quarter in Mysql

Example:
--First day of the next quarter
SELECT DATEADD(qq, DATEDIFF(qq, 0, GETDATE()) + 1, 0)
Result:

Post a Comment

0 Comments