gpt4 book ai didi

mysql - 仅使用 MySQL 查询创建条形图

转载 作者:行者123 更新时间:2023-11-29 00:11:34 26 4
gpt4 key购买 nike

我曾经看到一个MySQL结果,其中一个提取的数量以*显示为条形图。像这样。

id | amount | bar
----------------------------
1 | 7 | *******
2 | 4 | ****
3 | 0 |
4 | 3 | ***
5 | 9 | *********
6 | 10 | **********
7 | 6 | ******
8 | 3 | ***
9 | 2 | **
10| 0 |

如果我没记错的话,查询中使用了某种 RANGE() 函数,例如

SELECT
`id`,
COUNT(*) AS `amount`,
RANGE(`amount`) AS `bar`
FROM
`table`

但我在 google 或 SO 上的研究都没有成功。任何人都知道如何执行此操作或可以将我转发到适当的 SO 帖子?

最佳答案

Strawberry有线索in his comment .我要查找的函数名称是 REPEAT()。有趣的是我在 MySQL 文档中找不到它,所以我指的是 w3resource (如果有人能找到官方文档,请随意编辑)。

Syntax

REPEAT(str, count)
  • str A string which is to be repeated.
  • count An integer indicating how many times the string str is to be repeated.

所以函数可以这样使用

SELECT
`id`,
COUNT(*) AS `amount`,
REPEAT('#' , COUNT(`amount`)) AS `bar`
FROM
`table`

返回类似的输出

id | amount | bar
----------------------------
1 | 4 | ####
2 | 14 | ##############
3 | 8 | ########
4 | 5 | #####
5 | 3 | ###
6 | 11 | ###########

count 参数也可用于拉伸(stretch)或收缩条形图,例如通过乘法或除法,像这样

...
REPEAT('#', COUNT(`amount`)/4)) AS `bar`
...

会返回这样的东西

id | amount | bar
----------------------
1 | 20 | #####
2 | 12 | ###
3 | 32 | ########

关于mysql - 仅使用 MySQL 查询创建条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24839581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com