1mysql> SELECT CASE WHEN 2>3 THEN 'this is true' ELSE 'this is false' END;
2+-------------------------------------------------------------+
3| CASE WHEN 2>3 THEN 'this is true' ELSE 'this is false' END |
4+-------------------------------------------------------------+
5| this is false |
6+-------------------------------------------------------------+