0
我有一個表,如下所示:如何使用OracleDataReader來檢索模式數據並以我想要的方式顯示它?
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
你猜對了吧!這是一場排球比賽!然而,我想我的輸出是在一行(我已經從數據庫中檢索了上述表格)。例如:
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.net使用dataReader
和html
表/ dataset
放在上面的表中爲用戶正確的格式,但與algorithm
有麻煩。
**Notice that the game could have a third set as well
感謝,
可以在查詢中完成。部分連接兩個團隊,然後是一個關鍵點。什麼版本的Oracle? –
託尼霍普金森由於複雜性,我會更容易做到這一點vb –
@託尼霍普金森我同意埃馬紐埃爾。我試圖做一個查詢,但它太複雜了。在vb.net中並不是那麼容易:(11g Tony – user1683987