top / limit / rownum / percent (前XXX条数据) --top(SQL Server / MS Access) select top 条数 from 表; --percent(SQL Server) select top 20 percent * from 表 --选取前百分之20的数据 --limit(MySQL) select * from 表 limit 条数 --rownum(Oracle) select * from 表 where rownum <= 条...
select top 20 percent * From 表名称
5 3 78 王五 6 2 99 王五 ...现使⽤ 可以显⽰出所有科⽬前10名单 select a.sid,sname,id,fen,name from tableA a inner join (select*from tableB b where id in(select top10 id from tableB where sid=b.sid order by fen desc)) as b on a.sid=b.sid order by...