我想獲得MIN/MAX房屋編號,這是一件容易的事。 但有一列包含一個地區。 原始數據: Street Name | House Number | district
Hauptstr. | 1 | A
Hauptstr. | 2 | A
Hauptstr. | 3 | B
Hauptstr. | 4 | B
Hauptstr. | 5 | A
所需的輸出: Stre
下面的子查詢返回一組值的最小值(S): SELECT R.mID AS MID, AVG(R.stars) AS AVGSTARS FROM Rating R
GROUP BY R.mID
ORDER BY AVGRSTARS
返回下列值: MID AVGSTARS
104 2.5000
103 2.5000
101 3.0000
108 3.3333
107 4.0000