select null 的用法?
我看到一些示例使用带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果选择查询中有记录,则将 Exists 状态设置为 true。
检查此链接,其中有一些关于 select null 与 Exists 的用法的有趣评论: SQL SERVER- IF EXISTS(从表中选择 null)与 IF EXISTS(从表中选择 1)
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)
Linq to SQL 会做这样的事情:
当我不需要数据而只需要存在状态时,它会阻止带入数据。
Linq to SQL do this sort of thing :
It prevents to bring data when I don't want data, but just the exist status.