嗨,这个查询我正在尝试在 MySQL 中运行以在我的 ID 上很好地分布,但看起来语法上存在一些问题。
select min(ID), max(ID),count(*), nt from ( select ID, ntile(16) over (order by ID) nt from table) group by nt order by nt;
这在Oracle中工作,但不是MySQL,它可能看起来在MySQL 5.7中不可用。 我们还能如何获得这些数据?
基本上我生成了UUID应用程序,可以对其进行排序,并且需要组织和分组,然后分为16段。
预期产出
MIN(ID) MAX(ID) COUNT(*) NT
00000000-ebc5-4d19-9d7b 0a360b83-6d9a-17d7-9b67 36282227 1
0a360b83-6d9a-17d7-9b67 0a360b85-6ebb-1bbc-9bbb 36282227 2
MYSQL 5,7 和 Mariadb 10.1 的 NTILE
**和以前的版本**这需要一点逻辑,如果你愿意,你可以调试它
第一个是我的应用程序,第二个是用于比较的查询的 mysql 80 版本
我仍然建议升级您的 mysql 版本
主要部分是
@mod:=countr % 16, @div:=countr DIV 16
确定所需磁贴数量的位置
SELECT MIN(ID), MAX(ID), COUNT(*), nt FROM (SELECT `ID`, IF(@countr < @div2, @ntile, @ntile:=@ntile + 1) AS nt, IF(@countr < @div2, @countr:=@countr + 1, @countr:=1) c1, IF(@ntile <= CAST(@mod AS UNSIGNED), @div2:=@div + 1, @div2:=@div) div2 FROM (SELECT ID, @mod:=countr % 16, @div:=countr DIV 16, @div2:=@div FROM table1, (SELECT COUNT(*) countr FROM table1, (SELECT @ntile:=1, @countr:=0, @div2:=0) t3) t2) t1 ORDER BY ID) t1 GROUP BY nt ORDER BY CAST(nt AS UNSIGNED);
select min(ID) , max(ID) ,count(*) , nt from ( select ID , ntile(16) over (order by ID) nt from table1) t1 group by nt order by nt;
db<>在这里摆弄