hey all,
I have this...
That returns a single row where c.id=1. How do eliminate the c.id=1 and return a row for every customer?Code:select company,sum(minutes) from production_table as A right join customers as C on A.customerID=C.id where C.id=1
I'm using mysql if it matters
thanks
kevin




Reply With Quote