SQL 2000 - 从存储过程返回

发布于 2024-08-30 01:18:55 字数 241 浏览 3 评论 0原文

我正在写一个存储过程。这个过程有一种情况,如果满足,我想停止执行该过程并返回-1。我该怎么做?目前,我正在尝试以下操作:

IF @result <> 1
BEGIN
  SELECT -1                 
END

但是,SELECT 不是典型的“返回”。正如你可以想象的那样,我大部分时间都花在代码上,这就是为什么我正在寻找“回报”之类的东西。

谢谢你,

I'm writing a stored procedure. This procedure has a case where if it is met, I want to stop executing the procedure and return -1. How do I do this? Currently, I'm trying the following:

IF @result <> 1
BEGIN
  SELECT -1                 
END

However, SELECT is not a typical "return". As you can imagine I spend most of my time in code which is why i'm looking for something like a "return".

Thank you,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

紫轩蝶泪 2024-09-06 01:18:55
IF @result <> 1
BEGIN
  RETURN -1                 
END
SELECT * FROM bla
RETURN 0
IF @result <> 1
BEGIN
  RETURN -1                 
END
SELECT * FROM bla
RETURN 0
指尖凝香 2024-09-06 01:18:55
IF @result <> 1
BEGIN
  SELECT -1          
  RETURN       
END

不起作用?

IF @result <> 1
BEGIN
  SELECT -1          
  RETURN       
END

does not work?

初见你 2024-09-06 01:18:55

试试这个

IF @result <> 1
BEGIN
  RETURN -1                 
END

Try this

IF @result <> 1
BEGIN
  RETURN -1                 
END
溺深海 2024-09-06 01:18:55

RETURN (Transact-SQL)

无条件退出查询或
程序。立即退货
完整且可以随时使用
退出过程、批处理或
语句块。声明称
follow RETURN 不执行。

与存储过程一起使用时,
RETURN 不能返回空值。如果
过程尝试返回 null
值(例如,使用 RETURN
@status 当 @status 为 NULL 时),a
生成警告消息并显示
返回值 0

当一切正常时返回零 0 是一种常见的约定,当出现软错误(如验证或用户警告)时返回负值,而当出现硬错误(如插入失败)时返回正值, ETC。

...

IF @result!=1
BEGIN
  RETURN -1 --there was an error!          
END

....

RETURN 0  --everything is fine

RETURN (Transact-SQL)

Exits unconditionally from a query or
procedure. RETURN is immediate and
complete and can be used at any point
to exit from a procedure, batch, or
statement block. Statements that
follow RETURN are not executed.

When used with a stored procedure,
RETURN cannot return a null value. If
a procedure tries to return a null
value (for example, using RETURN
@status when @status is NULL), a
warning message is generated and a
value of 0 is returned

.

It is a common convention to return zero 0 when everything is fine, a negative value when there is a soft error (like validation or user warning) and a positive value for a hard error, like insert failed, etc.

...

IF @result!=1
BEGIN
  RETURN -1 --there was an error!          
END

....

RETURN 0  --everything is fine
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文