位置:首页 > 软件操作教程 > 数据分析 > SQL > 问题详情

SQL操作应用——:select top 30 recid from A where recid>-1

提问人:ylm发布时间:2020-09-30

在那个子查询中也加条件:select top 30 recid from A where recid>-1

例2:查询表中的最后以条记录,并不知道这个表共有多少数据,以及表结构。
set @s = 'select top 1 * from T   where pid not in (select top ' + str(@count-1) + ' pid  from  T)'

print @s      exec  sp_executesql  @s

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部