次のようなテーブルがあります。
date code name score set
09/09/12 967873 Team A 24 1
09/09/12 967873 Team B 22 1
09/09/12 967873 Team A 21 2
09/09/12 967873 Team B 16 2
02/04/12 965454 Team X 21 1
02/04/12 965454 Team Y 19 1
02/04/12 965454 Team X 21 2
02/04/12 965454 Team Y 19 2
あなたはそれを正しく推測しました!バレーボールの試合です!ただし、出力を1行にしたいと思います(データベースから上記のテーブルを既に取得しています)。例えば:
date code Teams Set-1 Set-2 Set-3
09/09/12 967873 Team A VS.Team B 24-22 21-16 -
and so on....
vb.netdataReader
とhtml
tables/dataset
を使用して、上記のテーブルをユーザーに適した形式で配置したいと思いますが、algorithm
.
**Notice that the game could have a third set as well
ありがとう、