select * from( select top 10 * from tempTable)
总是报错
------解决方案--------------------
select * from ( select top 10 * from tempTable) A
------解决方案--------------------
select * from( select top 10 * from tempTable) a
这样就行了...
select * from( select top 10 * from tempTable)