Could someone please help me on how I would use CASE or ? in the example query below? Thank You
Select col,
if col1 = '0' and col2 = '0' then
set test = '175'
else if col1 = '0' and col2 = '1' then
set test = '152'
else if col1 = '1' and col2 = '0' then
set test = '135'
else
set test = '100'
End
From table