What\'s the most efficient way to calculate the last day of the prior quarter?
Example: given the date 11/19/2008, I want to return 9/30/2008.
Platform is S
Actually simpler is:
SELECT DATEADD(qq, DATEDIFF(qq, 0, GETDATE()), -1)