SelectDB Cloud
SQL 手册
函数
conditional-functions
if

if

description

Syntax

if(boolean condition, type valueTrue, type valueFalseOrNull)

如果表达式 condition 成立,返回结果 valueTrue;否则,返回结果 valueFalseOrNull 返回类型: valueTrue 表达式结果的类型

example

mysql> select  user_id, if(user_id = 1, "true", "false") test_if from test;
+---------+---------+
| user_id | test_if |
+---------+---------+
| 1       | true    |
| 2       | false   |
+---------+---------+

keywords

IF

© 2023 北京飞轮数据科技有限公司 京ICP备2022004029号 | Apache、Apache Doris 以及相关开源项目名称均为 Apache 基金会商标