日期:2014-05-17  浏览次数:20535 次

嵌套查询的问题
select * from( select top 10 * from tempTable)

总是报错
------解决方案--------------------
select * from ( select top 10 * from tempTable) A


------解决方案--------------------
select * from( select top 10 * from tempTable) a 

这样就行了...