我有兩個表由StudentID和ParkingID聯接。我的表B有重複的停車信息。我希望獲得StudentID,StudentName,ParkingSpace數量和重複次數。這是我的第一篇文章,如果我不遵循所有正確的協議,請原諒我。我很感激幫助。連接第二個表具有重複項的表的一個SQL查詢
例子:
Table A:
StudentID StudentName
---- ------
001 Mary
002 Jane
003 Peter
004 Smith
005 Kathy
Table B:
ParkingID ParkingSpace
----- -----
001 25
001 25
002 18
003 74
004 22
005 31
005 31
005 31
005 31
005 31
這是我的目標。
StudentID StudentName ParkingSpace dupCount
---- ------ ------ ------
001 Mary 25 2
005 Kathy 31 5
這兩個表如何鏈接? –
StudentID和ParkingID – user3338724
那麼StudentID和ParkingID代表的是相同的東西?如果是這樣,你可以考慮命名它們相同。 –