-3

私はテーブルマッチを持っています:

ID  (int)
ID_Match (int)
ID_Player (int)
Attend   (bit)
Goals (int)

私が書くとき

Select * from Match 

私はこれを持っています:

       ID   ID_Match    ID_Player  Attend   Goals
1       69    1            10       1         2
2       70    1            11       0         0

そして、私はこれが欲しい:

ID_Player ID_Match  Attend  Goals
    10       1        1       2

アイデアはありますか?

4

1 に答える 1