oracle sql 前100条数据库,oracle/mysql/sqlserver三种数据库查询表获取表数据的前100条数据与排序时获取指定的条数....
1.oracle获取表的前100条数据.select*fromt_stu_copywhererownum100;正确或者:select*fromt_stu_copywherestuidbetween101and200;2.mysql获取表的前100条数据.select*fromt_stu_copylimit0,100;(从1行开始取100行数据,第一行到第100行数据)补充:先降序排序再获取第10