Looking for some guidance on how to best execute this code...
Ultimately, I want to insert this into the where clause so that the FSCL_YR_WK (i.e. 201804) will be driven based on the current date.
AND A.FSCL_YR_WK = Case
WHEN GETDATE() between 2018-02-26 AND 2018-03-04 THEN 201804
WHEN GETDATE() between 2018-03-05 AND 2018-03-11 THEN 201805
WHEN GETDATE() between 2018-03-12 AND 2018-03-08 THEN 201806
ELSE '' END