sql – select中子查询语句的Where子句

假设我有这样的查询
Select col1,col2,(select count(smthng) from table2) as 'records'
   from table1

我想过滤它为“记录”列不为空.

我不能做到这一点:

Select col1,(select count(smthng) from table2) as 'records'
          from table1
        where records is not null

我想出的最好的方法是将此结果集写入Table Value参数,并对该结果集进行单独查询.有任何想法吗?

解决方法

只需将其移动到派生查询即可.您不能使用WHERE子句中SELECT子句中定义的列.
Select col1,records
from
(
    Select col1,(select ..... from table2) as records
    from table1
) X
where records is not null;

相关文章

(一)日志传送架构 (1.1)相关服务器 主服务器 :用于生产的服务器,上面运行这生产SQL Server数据库...
(一)事故背景 最近在SQL Server 2012生产数据库上配置完事物复制(发布订阅)后,生产数据库业务出现了...
(一)测试目的 目前公司使用的SQL SERVER 2012高可用环境为主备模式,其中主库可执行读写操作,备库既...
(一)背景个人在使用sql server时,用到了sql server的发布订阅来做主从同步,类似MySQL的异步复制。在...
UNION和OR谓词 找出 product 和 product2 中售价高于 500 的商品的基本信息. select * from product wh...
datawhale组队学习task03