Sql Server 实现 Mysql Limit 功能

数据库   发布日期:2025年06月02日   浏览次数:261

select top 5 * from B2BProducts where DealerID = '26'
and id not in (
select top 5 id from B2BProducts where DealerID = '26'
)

 

用Top 

以上就是Sql Server 实现 Mysql Limit 功能的详细内容,更多关于Sql Server 实现 Mysql Limit 功能的资料请关注九品源码其它相关文章!