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!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
