SQL Server IF EXISTS THEN 1 ELSE 2(SQL Server IF EXISTS THEN 1 ELSE 2)
问题描述
使用 Sql Server 2012.我有一个存储过程,它的一部分检查用户名是否在表中.如果是,则返回 1,如果不是,则返回 2.这是我的代码:
Using Sql Server 2012. I have a stored procedure and part of it checks if a username is in a table. If it is, return a 1, if not, return a 2. This is my code:
IF EXISTS (SELECT * FROM tblGLUserAccess WHERE GLUserName ='xxxxxxxx') 1 else 2
但是,我不断收到以下错误:
However, I keep receiving the below error:
'1' 附近的语法不正确.
Incorrect syntax near '1'.
这甚至可以通过 IF EXIST 实现吗?
Is this even possible with an IF EXIST?
问候,
迈克尔
推荐答案
如果你想这样做,那么这就是你所追求的语法;
If you want to do it this way then this is the syntax you're after;
IF EXISTS (SELECT * FROM tblGLUserAccess WHERE GLUserName ='xxxxxxxx')
BEGIN
SELECT 1
END
ELSE
BEGIN
SELECT 2
END
您并不严格需要 BEGIN..END
语句,但最好从一开始就养成这种习惯.
You don't strictly need the BEGIN..END
statements but it's probably best to get into that habit from the beginning.
这篇关于SQL Server IF EXISTS THEN 1 ELSE 2的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL Server IF EXISTS THEN 1 ELSE 2
基础教程推荐
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01