1

只是在 SQL Server 中玩弄子查询(我知道这个问题不必用子查询来解决,但我想知道我的语法问题在哪里)

select count(*) from 
( select id, totalcharges from tblVisits where (totalcharges <10000))
4

1 回答 1

6

我认为您需要命名您的子查询 - 例如在这里将其别名为“t”:

select count(*) from 
( select id, totalcharges from tblVisits where (totalcharges <10000)) t
于 2012-05-31T14:53:12.190 回答