I'm trying to do this:
- If the Day parameter is the current day, then set
@EndDate
to be yesterday instead - If the Day parameter is in the future, set
@EndDate
to yesterday.
I've tried a few different approaches including two down below. I'm fairly new to programming so odds are I'm missing something fairly simple. Basically, I am trying to set @EndDate
conditionally, depending on what @Day
is set to be.
DECLARE @Day DATETIME
SET @Day = '09/2/17 12:50'
SET @Day = DATEADD(dd, DATEDIFF(dd, 0, @Day), 0)
DECLARE @Enddate DATETIME
SET @Enddate = CASE @Day
WHEN @Day < GETDATE() THEN GETDATE() - 1
END
--SET @Enddate = @Day
-- WHERE @Day < GETDATE()
--SET @Enddate = GETDATE()-1
-- WHERE@Day >= GETDATE()
Thanks
You are mixing the two possible ways to write a case expression...
You can either use
or then you can use:
This is the correct way: