Report this

What is the reason for this report?

How to display multiple queries in different columns?

Posted on August 2, 2021

Hey,

is it possible to get the three results in three columns with different headlines?

%sql select avg (safety_score) as AVG_SAFETY from chicago_public_schools where school_type = ‘ES’ union select avg (safety_score) as AVG_SAFETY from chicago_public_schools where school_type = ‘HS’ union select avg (safety_score) as AVG_SAFETY from chicago_public_schools where school_type = ‘MS’

n this case the result appears like this:

avg_saefty 48 49.52… 49.62…

thanks

Tobi



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @Tobi0909,

As far as I know, it is possible, what you are looking at is a crosstab query.

MySQL’s crosstabs contain aggregate functions on two or more fields, presented in a tabular format. In a multi-aggregate crosstab query, two different functions can be applied to the same field or the same function can be applied to multiple fields on the same (row or column) axis.

You can check the following link where it’s more thourohly explained Cross tab query in MySQL

Hope this helps!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.