嵌套查询的有关问题

嵌套查询的问题select * from( select top 10 * from tempTable)总是报错[解决办法]select * from ( selec

嵌套查询的问题

select * from( select top 10 * from tempTable)

总是报错
[解决办法]
select * from ( select top 10 * from tempTable) A


[解决办法]
select * from( select top 10 * from tempTable) a 

这样就行了...