Hi I’m battling to understand how to use the syntax of cases in sqlite.
What I’m trying to do
If Monday is in column 5 then show value in column 1 for the same row.
So for every row that has Monday in column 5 it will show the value of column 1.
Hope that makes sense
Thanks
EDIT
ID SHOW NAME AIRS
1 The Test Monday
2 Wrong Tuesday
So it must look through AIRS and then it finds Monday and outputs the corresponding show name – The Test
So you want to show all shows that air on Monday? No need for fancy
CASE.