发布网友 发布时间:2022-04-07 15:01
共4个回答
热心网友 时间:2022-04-07 16:31
方法一: select top 10 * from 表名 order by 列名 方法二: select top 10 percent * from 表名 order by 列名 方法一:是按照指定列名排序后,取前十个方法二:按照指定列名排序后,取总数的10% 希望能够满足您的需求,谢谢采纳热心网友 时间:2022-04-07 17:49
使用 select top 5 * from table order by id 时,报用select语句检索oracle数据库时出现ora-00923:未找到要求的from关键字。热心网友 时间:2022-04-07 19:23
select top(所要查的数字) form 表名热心网友 时间:2022-04-07 21:15
筛选,再排序