if

if

if介绍

if(expr1, expr2, expr3) - 如果 expr1 求值为真,则返回 expr2;否则返回 expr3。

Examples:

> SELECT if(1 < 2, 'a', 'b');
 a

Since: 1.0.0