计算CURRENT季度最后一天的最有效方法是什么?
示例:截止日期为3/5/09,我想返回3/31/09.
平台是ColdFusion和SQL Server
SELECT DATEADD(qq, DATEDIFF(qq, - 1, '3/5/09'), - 1)