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!
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.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.