只是在 SQL Server 中玩弄子查询(我知道这个问题不必用子查询来解决,但我想知道我的语法问题在哪里)
select count(*) from
( select id, totalcharges from tblVisits where (totalcharges <10000))
只是在 SQL Server 中玩弄子查询(我知道这个问题不必用子查询来解决,但我想知道我的语法问题在哪里)
select count(*) from
( select id, totalcharges from tblVisits where (totalcharges <10000))