HTMLify
Day 55
Views: 5 | Author: djdj
1 2 3 4 5 6 | # Write your MySQL query statement below select 'Low Salary' as category, count(*) as accounts_count from Accounts where income < 20000 union select 'Average Salary' as category, count(*) as accounts_count from Accounts where income between 20000 and 50000 union select 'High Salary' as category, count(*) as accounts_count from Accounts where income > 50000 |