查詢前50%的資料
實驗環境:
c 等於10,7,9的數量有 11個,超過了半數。
超過半數的 item資訊。
通用方式,不依賴具體資料庫。
查詢結果:
繫結MySQL的實現
結果:
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;
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;
c 等於10,7,9的數量有 11個,超過了半數。
超過半數的 item資訊。
通用方式,不依賴具體資料庫。
-
select t5.*,t6.*,ifnull(round(t5.sumtotal/t6.total,2),0) result from (
-
select t3.rn,t3.total,t3.c,sum(ifnull(t4.total,0)) sumtotal from (
-
select
-
t1.*,
-
(
-
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 (
-
select c,count(*) total from t group by c
-
) t2
-
) rn
-
from(
-
select c,count(*) total from t group by c order by total desc ,c
-
) t1
-
) t3
-
left join(
-
select
-
t1.*,
-
(
-
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 (
-
select c,count(*) total from t group by c
-
) t2
-
) rn
-
from(
-
select c,count(*) total from t group by c order by total desc ,c
-
) t1
-
) t4 on (t3.rn> t4.rn)
-
group by t3.rn,t3.total,t3.c
-
) t5
-
left join(
-
select count(*) total from t
-
) t6 on(1=1)
- where ifnull(round(t5.sumtotal/t6.total,2),0)<=0.5;
繫結MySQL的實現
-
select * from (
-
select t3.*,case when result<=0.5 then 1 when result>0.5 and @b=-1 then @b:=1 else null end r from (
-
select t1.*,round((@a:=@a+t1.total)/t2.total,2) result from (
-
select c,count(*) total from t,(select @a:=0,@b:=-1) vars group by c order by 2 desc
-
) t1
-
left join(
-
select count(*) total from t
-
) t2 on(1=1)
-
) t3 order by result
- ) t4 where r=1;
結果:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29254281/viewspace-2147318/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 查詢前90%的資料值
- 查詢前10條資料oracleOracle
- 50個查詢系列-建表和插入資料
- Oracle查詢前100萬條資料Oracle
- 資料庫資料的查詢----連線查詢資料庫
- 根據某個查詢條件的前50條資料來決定UPDATE語句的更新範圍
- 50種方法最佳化SQL Server資料庫查詢SQLServer資料庫
- 回閃查詢查詢刪除的資料
- Flask——資料的查詢Flask
- MySQL分組查詢後獲取前N條資料MySql
- SQLSERVER查詢當前資料中的所有表
- MySQL - 資料查詢 - 簡單查詢MySql
- B樹查詢,磁碟查詢資料
- 資料庫 - 資料查詢資料庫
- Laravel查詢 日期比當前時間早一個月的資料Laravel
- 查詢當前資料庫存在某個字串的儲存過程資料庫字串儲存過程
- 插入查詢資料的操作
- SSH:hiberate實現資料的查詢(單查詢和全查詢)
- Java ——MongDB 插入資料、 模糊查詢、in查詢Java
- 資料庫高階查詢之子查詢資料庫
- 資料庫 - 連線查詢、巢狀查詢、集合查詢資料庫巢狀
- indexedDB 查詢資料Index
- RESTFul資料查詢REST
- MySQL資料查詢MySql
- EF 查詢資料
- myGeneration——查詢資料
- 資料庫查詢資料庫
- MYSQL查詢資料MySql
- AMS 資料查詢
- 查詢當前SQL Server的版本SQLServer
- MySQL查詢當前資料庫中所有記錄不為空的表MySql資料庫
- 資料庫基礎查詢--單表查詢資料庫
- elasticsearch查詢之大資料集分頁查詢Elasticsearch大資料
- 資料庫查詢優化:巢狀查詢資料庫優化巢狀
- 查詢資料庫的資料量的大小資料庫
- Prometheus時序資料庫-資料的查詢Prometheus資料庫
- MySQL 查詢重複的資料MySql
- 資料庫查詢慢的原因資料庫