当前位置: 代码迷 >> Sql Server >> 关于select top 的有关问题,
  详细解决方案

关于select top 的有关问题,

热度:20   发布时间:2016-04-27 19:53:01.0
关于select top 的问题,,,,求助!
select   top   2*   from   tableA

如果tableA里只有一条纪录的话,这条语句,执行返回的是   1   条,而不是2条。

我该怎么处理,如果返回的不是2条,就打印错误。

总不能,

select   count(*)   from   (select   top   2*   from   tableA)   as   tableB吧?

谢谢!

------解决方案--------------------
if(select count(*)from tb)> 1
begin
select top 2 * from tb
end
else
begin
select * from tb
union all select * from tb
end
------解决方案--------------------
select top 2 * from tableA
if @@rowcount <> 2
print 'error '
  相关解决方案