if statement in sql code example
Example 1: if inside select mysql
SELECT IF(1>3,'true','false');
Example 2: end as sql
select
case when ID in ('1', '2', '3')
then 'Jack'
else 'Jim'
end as Person
from Table.Names
select
case when ID in ('1', '2', '3')
then 'Jack'
else 'Jim'
end Person
from Table.Names
Example 3: if else sql
IF Boolean_expression
BEGIN
END
ELSE
BEGIN
END
Example 4: if in sql
SELECT
IF(500<1000, "YES", "NO");
Example 5: how to do an if statement in sql server
DECLARE @Course_ID INT = 4
IF (@Course_ID = 4)
Select * from Guru99 where Tutorial_ID = 4
ELSE
Select * from Guru99 where Tutorial_ID != 4
Example 6: if in sql
BEGIN
IF my_val = 1 THEN [...]
ELSE [...]
END IF;
END;
SELECT CASE WHEN my_col = 1 THEN 'Ok' ELSE 'Ko' END AS my_result
FROM DUAL;