-1

私は1つのマスターテーブルIDアクセサリCarColorバリアント値(1 863,862 6 2 5)など(すべてのIDはマスターテーブルに入っています)と、値を持つ車の色、バリアントなどの5つの他のテーブルがあります


id   color
5    red
6    blue
3    green

id = mastertable.id のような各子テーブルからの値が必要です

SqlCommand sqlCommand = new SqlCommand(" select * from cartable where carcolor.id = mastertable.carcolor ") ; 
SqlCommand sqlCommand = new SqlCommand(" select * from varianttable where variant.id = mastertable.variant ")  ; 
SqlCommand sqlCommand = new SqlCommand ("select * from accessoriestable where accessories.id = mastertable.accessories ") ;// 

私の質問は、5つのselectステートメントすべてを結合する方法、またはこれに対するより良い解決策はありますか?

4

1 に答える 1