Answers for "mariadb case switch"

SQL
2

mariadb case switch

mysql> SELECT CASE  WHEN 2>3 THEN 'this is true' ELSE 'this is false' END; 
+-------------------------------------------------------------+
| CASE  WHEN 2>3 THEN 'this is true' ELSE 'this is false' END |
+-------------------------------------------------------------+
| this is false                                               | 
+-------------------------------------------------------------+
Posted by: Guest on May-25-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language