gpt4 book ai didi

sql - 如何检查空表并终止存储过程

转载 作者:行者123 更新时间:2023-12-04 23:47:47 29 4
gpt4 key购买 nike

如果表不为空,则显示表的内容并且不执行脚本的其余部分。如何做到这一点?最好的方法是什么?设置 noexec 或 raiseerror?还是使用 Return?

谢谢!

最佳答案

if exists(select top 1 NULL from <your_table_name>)
begin
--do something if you need

select col1, col2,... from <your_table_name>
where <your_condition>

--do other things if needed
end
else
return <-- this will stop right here and return

关于sql - 如何检查空表并终止存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6365914/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com