SQL Server IIF vs CASE(SQL Server IIF 与 CASE)
问题描述
我最近了解到 SQL Server 2012 中 IIF 函数的可用性.我总是在查询中使用嵌套的 CASE.我想知道 IIF 语句的确切用途,以及我们何时应该在查询中使用 IIF 而不是 CASE 语句.我主要在查询中使用嵌套的 CASE.
I recently came to know about the availability of IIF function in SQL Server 2012. I always use nested CASE in my queries. I want to know the exact purpose of the IIF statement and when should we prefer using IIF over CASE Statement in the query.
I mostly use nested CASE in my queries.
感谢所有的投入.
推荐答案
IIF 与 CASE WHEN .查询计划将是相同的.它可能是最初实现的语法糖".
IIF is the same as CASE WHEN <Condition> THEN <true part> ELSE <false part> END. The query plan will be the same. It is, perhaps, "syntactical sugar" as initially implemented.
CASE 可在所有 SQL 平台上移植,而 IIF 是特定于 SQL SERVER 2012+ 的.
CASE is portable across all SQL platforms whereas IIF is SQL SERVER 2012+ specific.
这篇关于SQL Server IIF 与 CASE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL Server IIF 与 CASE
基础教程推荐
- 带更新的 sqlite CTE 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
