mariadb case switch

Solutions on MaxInterview for mariadb case switch by the best coders in the world

showing results for - "mariadb case switch"
Charis
03 Jul 2018
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+-------------------------------------------------------------+