“取出数据表中第10条到第20条记录”的sql语句+selecttop用法【点击查看详情】
取出数据表中第10条到第20条记录的sql语句+selecttop用法:1.首先,select top用法: 参考问题 select top n * from和select * from的区别 select * from table -- 取所有数据,返回无序集合 select top n * from table -- 根据表内数据存储顺序取前n条,返回无序集合 select * from table
相关视频/文章