嵌套查询的问题
select * from( select top 10 * from tempTable)
总是报错
[解决办法]
select * from ( select top 10 * from tempTable) A
[解决办法]
select * from( select top 10 * from tempTable) a
这样就行了...
发布时间: 2012-12-29 10:28:09 作者: rapoo
嵌套查询的问题
select * from( select top 10 * from tempTable)