Microsoft SQL Server 2005 检查临时表是否为空

发布于 2024-08-29 02:18:28 字数 179 浏览 5 评论 0原文

有没有一种快速/高效的方法来检查表是否为空?

DECLARE @StartEndTimes TABLE
(
    id bigint,
    StartTime datetime,
    EndTime datetime
)

IF @StartEndTimes IS NOT NULL

Is there a fast/efficiency way to check if a table is empty?

DECLARE @StartEndTimes TABLE
(
    id bigint,
    StartTime datetime,
    EndTime datetime
)

IF @StartEndTimes IS NOT NULL

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

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

发布评论

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

评论(2

金兰素衣 2024-09-05 02:18:28

而不是数数,你可以;

if exists (select id from @StartEndTimes)
   set @has_stuff = 1

一旦碰到一行就会返回。

Rather than counting you can;

if exists (select id from @StartEndTimes)
   set @has_stuff = 1

Which will return as soon as it hits a row.

天邊彩虹 2024-09-05 02:18:28

我认为你最好的选择可能是 COUNT

DECLARE @StartEndTimes TABLE 
( 
    id bigint, 
    StartTime datetime, 
    EndTime datetime 
)

SELECT COUNT(1) FROM @StartEndTimes

I think your best bet might be COUNT

DECLARE @StartEndTimes TABLE 
( 
    id bigint, 
    StartTime datetime, 
    EndTime datetime 
)

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