sql server if判断语句
时间: 2023-09-06 21:13:36 浏览: 147
mysql if判断
5星 · 资源好评率100%
在 SQL Server 中,IF 语句可以使用以下语法:
```
IF condition
BEGIN
-- code to execute if condition is true
END
ELSE
BEGIN
-- code to execute if condition is false
END
```
其中,condition 为要测试的条件表达式,如果条件表达式为 true,则执行 IF 语句块中的代码;否则,执行 ELSE 语句块中的代码。
以下是一个示例:
```
DECLARE @score int = 80;
IF @score >= 60
BEGIN
PRINT 'You passed the exam.';
END
ELSE
BEGIN
PRINT 'You failed the exam.';
END
```
在这个示例中,如果分数大于或等于 60,则输出 “You passed the exam.”,否则输出 “You failed the exam.”。
阅读全文