91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mysql中如何查詢前50%的數據

發布時間:2021-10-29 17:09:58 來源:億速云 閱讀:1474 作者:小新 欄目:MySQL數據庫

這篇文章給大家分享的是有關mysql中如何查詢前50%的數據的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

實驗環境:

create table t (c int);
insert into t values 
(15),(7),(9),(10),(7),(8),(20),(16),(9),(19),
(14),(10),(11),(10),(10),(12),(7),(10),(7),(9);
commit; 


mysql中如何查詢前50%的數據
c 等于10,7,9的數量有  11個,超過了半數。
超過半數的 item信息。

通用方式,不依賴具體數據庫。


  1. select t5.*,t6.*,ifnull(round(t5.sumtotal/t6.total,2),0) result from (

  2.     select t3.rn,t3.total,t3.c,sum(ifnull(t4.total,0)) sumtotal from (

  3.         select

  4.         t1.*,

  5.         (

  6.             select count(case when t2.total>t1.total then 1 when t2.total=t1.total and t2.c<t1.c then 1 else null end)+1 from (

  7.                 select c,count(*) total from t group by c

  8.             ) t2

  9.         ) rn

  10.         from(

  11.             select c,count(*) total from t group by c order by total desc ,c

  12.         ) t1

  13.     ) t3

  14.     left join(

  15.         select

  16.         t1.*,

  17.         (

  18.             select count(case when t2.total>t1.total then 1 when t2.total=t1.total and t2.c<t1.c then 1 else null end)+1 from (

  19.                 select c,count(*) total from t group by c

  20.             ) t2

  21.         ) rn

  22.         from(

  23.             select c,count(*) total from t group by c order by total desc ,c

  24.         ) t1

  25.     ) t4 on (t3.rn> t4.rn)

  26.     group by t3.rn,t3.total,t3.c

  27. ) t5

  28. left join(

  29.     select count(*) total from t

  30. ) t6 on(1=1)

  31. where ifnull(round(t5.sumtotal/t6.total,2),0)<=0.5;

查詢結果:
mysql中如何查詢前50%的數據

綁定MySQL的實現

  1. select * from (

  2.     select t3.*,case when result<=0.5 then 1 when result>0.5 and @b=-1 then @b:=1 else null end r from (

  3.         select t1.*,round((@a:=@a+t1.total)/t2.total,2) result from (

  4.             select c,count(*) total from t,(select @a:=0,@b:=-1) vars group by c order by 2 desc

  5.         ) t1

  6.         left join(

  7.             select count(*) total from t

  8.         ) t2 on(1=1)

  9.     ) t3 order by result

  10. ) t4 where r=1;


結果:
mysql中如何查詢前50%的數據

感謝各位的閱讀!關于“mysql中如何查詢前50%的數據”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌兰察布市| 嘉兴市| 潢川县| 兰溪市| 宁阳县| 吴旗县| 天津市| 惠东县| 天气| 灵宝市| 大姚县| 丰顺县| 晋城| 宝应县| 曲水县| 柘城县| 琼海市| 宿迁市| 梁河县| 甘肃省| 鹤山市| 云阳县| 赤壁市| 福清市| 克什克腾旗| 余姚市| 正宁县| 宜宾市| 泰顺县| 瓦房店市| 湘潭县| 盐池县| 洪江市| 萨嘎县| 信阳市| 襄汾县| 广元市| 满洲里市| 连州市| 岳普湖县| 来宾市|