Answers for "mysql if and statement"

SQL
7

mysql else if

IF condition1 THEN
    statements;
ELSEIF condition2 THEN # OPTIONAL
	statements;
ELSE # OPTIONAL
    statements;
END IF;
Posted by: Guest on October-16-2020
3

mysql if else

IF condition THEN
   statements;
ELSE
   else-statements;
END IF;
Posted by: Guest on May-29-2020
0

mysql if statement in where clause

SELECT  `id` ,  `naam` 
FROM  `klanten` 
WHERE IF(`email` != '', `email`, `email2`) LIKE  '%@domain.nl%'
Posted by: Guest on April-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language