私は2つのテーブルを持っています
1) お客様
id | name
------+-------------------
1 | xyz1
2 | xyz2
3 | xyz3
4 | xyz4
5 | xyz5
2) 製品
id | name | customer | state
------+-------------+----------+-------
1 | product 1 | 1 |Shipped
2 | product 2 | 1 |Pending
3 | product 3 | 1 |Shipped
4 | product 4 | 1 |Pending
5 | product 5 | 2 |Shipped
次のようなクエリが必要です。
SELECT name from customer, SELECT count(*) from products where state='SHIPPED', SELECT count(*) from product where state='PENDING' for all developers
以下の結果が得られます。
name | count_shipped | count_pending
-------+---------------+---------------
xyz1 | 2 | 2
xyz2 | 1 | 0
xyz3 | 0 | 0
xyz4 | 0 | 0
xyz5 | 0 | 0