在MYSQL中如何查看第N条数据

在MYSQL中如何查看第N条数据

在sqlserver中有rownum可以使用。

而在MYSQL中可以这样使用。

LIMIT关键字

select category from products where seed_id=11 LIMIT 30660,30663;

相关推荐

网友评论(0)