我有一個mastertable ID配件CarColor變量值(1 863862 6 2 5)等(所有ID是要在我的mastertable)等5臺樣車色,變形等具有價值如何加入多個select語句一起
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語句峠值其他 或更好的解決方案呢?
請編輯您的問題,這幾乎是不可讀。答案很簡單,但你需要清楚,現在我甚至可以正確閱讀。 – Namphibian
你想如何顯示你的結果?最好的辦法是使用聯接 –
我需要每個子表的值,其id = mastertable.id –