This is an old revision of the document!


DRAFT

Omnidex SQL: SELECT GROUP_BY Clause

Description

Syntax

Statement

Discussion

arg1
arg2

Examples

Column Names From the Select List

select customer_no, sum(amount) from orders group by customer_no
select city, state, count(distinct company) from customers group by city, state

Column Names Not in the Select List

select status, sum(amount) from orders group by customer_no, status
select count(company) from customers group by state

Having

select customer_no, sum(amount) from orders 
   group by customer_no having customer_no = 1001;
select customer_no, sum(amount) from orders 
   group by customer_no having status != 'shipped';
select status, sum(amount) from orders group by status having customer_no 
   in (select customer_no from customers where company='systems');
 
Back to top
dev/sql/statements/select/group_by.1278201523.txt.gz ยท Last modified: 2016/06/28 22:38 (external edit)