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
基础教程推荐
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 在多列上分布任意行 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
