SQL:取规定数量的记录

MySQL

select * from <tablename> limit N

SQL Server

select top N from <tablename>

猜你喜欢

转载自blog.csdn.net/chenmiaoqin950606/article/details/80073830