Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if status=live then
Select * from table1 where status not in ...;
else
Select * from table1 where status in ...;
end if
if status=live then
if parameter2=something then
if parameter3=something then
Select * from table1 where status not in ...;
else
Select * from table1 where status in ...;
end if
else
//some query
end if
else
//some query
end if
CASE
WHEN search-condition
THEN expression,...
[ ELSE expression ]
END