select c.cno customer,count(distinct p.pno) products,count(distinct ch.chno)
from customers c,products p,cheques ch
where c.cno=p.cno and c.cno=ch.cno
group by c.cno

PLEASE TEST CAREFULL!!! Not sure if it is exactly what u need