给查询语句select top 100* from BZZLXX where (ZLBS not in (SELECT TOP 100 ZLBS FROM BZZLXX order by djh )) and 1=1
and 1=1 order by djh加条件(1=1 and 1=1)的时候出现异常:
不支持的查询语句:select top 100* from BZZLXX where
(ZLBS not in (SELECT TOP 100 ZLBS FROM BZZLXX
order by djh )) and 1=1 and 1=1 order by djh
加载时候是 select top 100* from BZZLXX where 1=1and 1=1order by djh
分页的是select top 100* from BZZLXX where (ZLBS not in (SELECT TOP 100 ZLBS FROM BZZLXX order by djh )) and 1=1 and 1=1 order by djh
过滤的是select top 100* from BZZLXX where 1=1 and 1=1 order by djh
以上SQL在查询分析器都正常
出现异常是在 先过滤后分页就出现