sql server 中有三元运算符的概念吗

2024-11-05 02:38:44
推荐回答(3个)
回答(1):

有。不过表达方式有些不同。
1、查询表中 case when
select case when 字段1>90 then '数值1' when 字段1>80 and 字段1<90 then ‘数值2’ else ‘数值3’ end
from 查询表 where 查询条件
2、存储过程或者函数中 用if

if(字段>='数值')

begin
具体操作
end

回答(2):

有。
sql server 中有三元运算符的概念。

回答(3):

SQL Server数据中运算符与表达式