How to implement pivot table output in MySQL
P粉481035232
2023-08-21 16:06:24
<p>If I have a MySQL table like the following:</p>
<pre>company_name action pagecount
----------------------------------
COMPANY A PRINT 3
COMPANY A PRINT 2
COMPANY A PRINT 3
Company BEMAIL
Company B PRINT 2
Company B PRINT 2
COMPANY B PRINT 1
COMPANY A PRINT 3
</pre>
<p>Is it possible to run a MySQL query to get the following output: </p>
<pre>company_name EMAIL PRINT 1 page PRINT 2 pages PRINT 3 pages
-------------------------------------------------- ----------
CompanyA 0 0 1 3
CompanyB 1 1 2 0
</pre>
<p>The idea is that <code>pagecount</code> can vary, so the number of columns in the output should reflect that, one for each <code>action</code>/<code>pagecount</code> column, then the number of clicks for each <code>company_name</code>. I'm not sure if this is called a pivot table, but has anyone suggested this? </p>
My solution is to use T-SQL without any pivots:
This is basically a pivot table.
A detailed tutorial on how to implement this function can be found here: http://www.artfulsoftware.com/infotree/qrytip.php?id=78
I recommend reading this article and adapting the solution to your needs.
renew
Since the link above is no longer available at the moment, I felt the need to provide some additional information for anyone looking for answers to mysql pivot tables here. It does contain a lot of information, and I won't copy everything here (not to mention I don't want to copy their vast knowledge), but I will give some suggestions on how to work with pivot tables in sql, to The question raised by peku is an example.
Maybe the link will be restored soon, I will continue to follow it.
Spreadsheet method...
Many people just use spreadsheet tools like MSExcel, OpenOffice or other for this purpose. This is a valid solution, just copy the data there and use the tools provided by the GUI to solve the problem.
But...this is not the crux of the problem, and may even lead to some shortcomings, such as how to import data into spreadsheets, scaling issues, etc.
SQL way...
Suppose his table looks like this:
Now look at the table he/she wants:
Theline (
EMAIL
,PRINT x pages
) represents the condition. The main grouping is bycompany_name
.To set conditions, this is more like using a
CASE
statement. To group by something, use...GROUP BY
.The basic SQL that provides this pivot table can be like this:
This should provide the desired results very quickly. The main disadvantage of this approach is that when you want to have more rows in the pivot table, you need to define more conditions in the SQL statement.
This can also be handled, so people tend to use prepared statements, routines, counters, etc.
Some additional links on this topic: