Viewing 3 posts - 1 through 4 (of 4 total)
I think typing all of that out.. made me say it 'out loud'..
I now have the solution
SELECT
CASE
WHEN [Open_Time] > AVG([Open_Time])...
September 6, 2017 at 7:49 am
Ok
So I have played with your solution and narrowed it down to this:SELECT ID, [Open_Time],
CASE
WHEN [Open_Time] > AVG([Open_Time])
OVER () * 1.5
THEN 'Yes'
ELSE 'No'
END...
September 6, 2017 at 7:44 am
Firstly,, thank you for not flaming me.. and for the welcome 🙂
Secondly, thats for the solution..
I will work with what you sent me to better understand it...
September 6, 2017 at 6:03 am
Viewing 3 posts - 1 through 4 (of 4 total)