MySQL solution for creating horizontal histogram

MySQL solution for creating horizontal histogram

Preface

Histogram is a basic statistical information provided by RDBMS. Its most typical use is to estimate the selectivity of query predicates in order to select an optimized query execution plan. Common types of histograms include: equal-width histogram, equal-height histogram, V-optimized histogram, MaxDiff histogram, etc.

Note: The test database version is MySQL 8.0

If you need to create tables and enter data under user scott, you can refer to:

Scott creates tables and enters data SQL script

1. Demand

Use SQL to generate a horizontally extending histogram.

For example, a horizontal histogram is used to display the number of volunteers in each department, with an asterisk "*" representing an employee.

The returned result set should be like:

±-------±-------+
| deptno | cnt |
±-------±-------+
| 10 | *** |
| 20 | ***** |
| 30 | ****** |
±-------±-------+

2. Solution

Use group by to group, find the total number, and then fill it with lpad

select deptno,
 lpad('*',count(*),'*') as cnt
 from emp
 group by deptno;

Testing Log:

mysql> select deptno,
 -> lpad('*',count(*),'*') as cnt
 -> from emp
 -> group by deptno;
+--------+--------+
| deptno | cnt |
+--------+--------+
| 10 | *** |
| 20 | ***** |
| 30 | ****** |
+--------+--------+
3 rows in set (0.00 sec)

Summarize

This is the end of this article about creating a horizontal histogram in MySQL. For more relevant content about creating a horizontal histogram in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Convert XHTML CSS pages to printer pages

>>:  The whole process of configuring reverse proxy locally through nginx

Recommend

Summary of the use of Datetime and Timestamp in MySQL

Table of contents 1. How to represent the current...

How to use jsonp in vue

Table of contents 1. Introduction 2. Installation...

Problems and experiences encountered in web development

<br />The following are the problems I encou...

How to install Windows Server 2008 R2 on Dell R720 server

Note: All pictures in this article are collected ...

Steps to create a WEBSERVER using NODE.JS

Table of contents What is nodejs Install NodeJS H...

Explanation of the usage scenarios of sql and various nosql databases

SQL is the main trunk. Why do I understand it thi...

Prevent HTML and JSP pages from being cached and re-fetched from the web server

After the user logs out, if the back button on the...

How to customize Docker images using Dockerfile

Customizing images using Dockerfile Image customi...

The most common mistakes in HTML tag writing

We better start paying attention, because HTML Po...

JavaScript operation element examples

For more information about operating elements, pl...

Solution to the problem that the mysql8.0.11 client cannot log in

This article shares with you the solution to the ...

Detailed explanation of the use of custom parameters in MySQL

MySQL variables include system variables and syst...