我有一个 mastertable id Accessories CarColor 变体值(1 863,862 6 2 5)等(所有 id 都在我的 mastertable 中)和 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 个选择语句连接在一起或对此有更好的解决方案?