我有一個包含CustomerIDs和SalespersonIDs的表(order_t),我想要顯示與所有與其關聯的CustomerIDs的SalespersonIDs。SQL獲取非重複值[Oracle SQL * Plus]
我嘗試使用SELECT DISTINCT
SELECT DISTINCT salespersonid, customerid
FROM order_t;
但是,這將重複salespersonids。
這裏有一個表樣品
salespersonid customerid
--------------- ---------------
15 1
15 2
15 3
16 4
16 5
17 6
而且我想這個數據集作爲結果
salespersonid customerid
--------------- ---------------
15 1
2
3
16 4
5
17 6
18 4
5
9
這完全
BREAK ON sid
SELECT DISTINCT salespersonid sid, customerid cid
FROM ORDER_T
ORDER BY salespersonid;
是的,所有這一切。 – StudentJ 2011-06-09 17:11:54