No subject


Tue Jun 4 12:17:20 MDT 2013


where
	Invoice_Date between '1 Jan 1999' and '1 Jan 2000'
group by Customer.Cust_ID,Customer_Name

If the database does not support outer joins you have to write something
like:

select
	Customer.Cust_ID,
	Customer_Name,
	count(Invoice.Invoice_No) as InvCount,
	sum(Invoice.Total) as InvSum


More information about the LUG mailing list