查詢前多少條資料

2021-08-13 08:37:54 字數 355 閱讀 5228

查詢前n條記錄

select  top  10  *  from  訂單明細  order by 數量 desc

查詢前n%條記錄

select  top 10  percent  *  from  訂單明細   order by 數量

查詢前n%條記錄(包含最後並列的排名資料)

select  top  10  with ties  *  from  訂單明細   order by 數量 desc

查詢不重複的資料(n個字段同時不重複)

select   distinct 貨主城市  from  訂單

select   distinct 貨主名稱,貨主城市  from  訂單

分組查詢前幾條資料

create table t id varchar 3 gid int,author varchar 29 title varchar 39 date datetime insert into tselect 001 1,鄒建 深入淺出sqlserver2005開發管理與應用例項 2008 05 1...

分組查詢前幾條資料

create table t id varchar 3 gid int,author varchar 29 title varchar 39 date datetime insert into tselect 001 1,鄒建 深入淺出sqlserver2005開發管理與應用例項 2008 05 1...

SQL查詢前幾條資料的方法

sql在不同資料庫查詢前幾條資料 1.oracle select from table1 where rownum n hql from table1 t order by t.createtime desc where rownum n 2.informix select first n from...