SQL Server 的两个查询合二为一

发布于 2024-08-29 22:02:47 字数 228 浏览 2 评论 0原文

这就是我试图做的事情类似于以下请求,但我不知道是否可以使用 SQL-Server 语法:

declare @idClient int

select @idClient=idClient from table
where entite is null and (SELECT * from table where entite=@idClient) is null 

谢谢。

This is what I'm trying to do something similar to the following request, but I don't know if it's possible with the SQL-Server syntax:

declare @idClient int

select @idClient=idClient from table
where entite is null and (SELECT * from table where entite=@idClient) is null 

Thanks.

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

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

发布评论

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

评论(1

南薇 2024-09-05 22:02:47

也许是这个?

SELECT t1.[idClient]
FROM   [table] t1
WHERE  [entite] IS NULL 
       AND NOT EXISTS (
           SELECT NULL
           FROM   [table] t2
           WHERE  t2.[entite]=t1.[idClient]
       )

Maybe this?

SELECT t1.[idClient]
FROM   [table] t1
WHERE  [entite] IS NULL 
       AND NOT EXISTS (
           SELECT NULL
           FROM   [table] t2
           WHERE  t2.[entite]=t1.[idClient]
       )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文