select null 的用法?

发布于 2024-10-15 23:09:28 字数 95 浏览 1 评论 0原文

我看到一些示例使用带有 null 的 select 语句。何时使用:

select null from etc. etc.?

I see that some examples uses select statement with null. When to use:

select null from etc. etc.?

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

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

发布评论

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

评论(2

挥剑断情 2024-10-22 23:09:29

Select null 通常与 EXISTS 结合使用。

例如:- IF EXISTS(从...中选择 null)

如果选择查询中有记录,则将 Exists 状态设置为 true。
检查此链接,其中有一些关于 select null 与 Exists 的用法的有趣评论: SQL SERVER- IF EXISTS(从表中选择 null)与 IF EXISTS(从表中选择 1)

Select null is usually used in combination with EXISTS.

eg:- IF EXISTS( select null from ...)

It sets up the Exists status as true if there are records in the select query.
Check this link which has some interesting comments on the usage of select null with Exists: SQL SERVER- IF EXISTS(Select null from table) vs IF EXISTS(Select 1 from table)

2024-10-22 23:09:29

Linq to SQL 会做这样的事情:

Select * 
From Foo f 
Where Exists
(   
    Select null 
    From Bar b 
        on b.fooId = f.id
)

当我不需要数据而只需要存在状态时,它会阻止带入数据。

Linq to SQL do this sort of thing :

Select * 
From Foo f 
Where Exists
(   
    Select null 
    From Bar b 
        on b.fooId = f.id
)

It prevents to bring data when I don't want data, but just the exist status.

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