資源描述:
《補(bǔ)充案例利用TSQL聯(lián)接查詢電子商城數(shù)據(jù)庫數(shù)據(jù).doc》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、利用T-SQL進(jìn)行聯(lián)接查詢。在SQLServer分析器中,使用電子商城E-Market數(shù)據(jù)庫及其中的數(shù)據(jù)表,按如下要求查詢指定的信息:1、若要查詢出所有商品的基本信息及其所在的商品的類別名稱,請(qǐng)使用T-SQL進(jìn)行查詢。2、請(qǐng)以商品類別表為左表,以商品信息表為右表,通過商品類別編號(hào)來實(shí)現(xiàn)兩個(gè)表的右連接查詢3、請(qǐng)以商品類別表為左表,以商品信息表為右表,通過商品類別編號(hào)來實(shí)現(xiàn)兩個(gè)表的完全連接查詢參考答案:1、SELECTa.CategoryID,a.CategoryName,b.CID,b.CName,b.Picture,b.InputPrice,b.OutputP
2、rice,b.AmountFROMCommodity_CategoryASa,CommodityInfoASbWHEREa.CategoryID=b.CategoryID2、SELECTa.CategoryID,a.CategoryName,b.CID,b.CategoryID,b.CName,b.Picture,b.InputPrice,b.OutputPrice,b.AmountFROMCommodity_CategoryASaRIGHTJOINCommodityInfoASbONa.CategoryID>b.CategoryID或者SELECTa.Cat
3、egoryID,a.CategoryName,b.CID,b.CategoryID,b.CName,b.Picture,b.InputPrice,b.OutputPrice,b.AmountFROMCommodity_CategoryASaRIGHTJOINCommodityInfoASbONa.CategoryID4、MCommodity_CategoryASaRIGHTJOINCommodityInfoASbONa.CategoryID=b.CategoryID1、SELECTa.CategoryID,a.CategoryName,b.CID,b.CategoryID,b.CName,b.Picture,b.InputPrice,b.OutputPrice,b.AmountFROMCommodity_CategoryASaFULLJOINCommodityInfoASbONa.CategoryID5、tegoryName,b.CID,b.CategoryID,b.CName,b.Picture,b.InputPrice,b.OutputPrice,b.AmountFROMCommodity_CategoryASaFULLJOINCommodityInfoASbONa.CategoryID>b.CategoryID或者SELECTa.CategoryID,a.CategoryName,b.CID,b.CategoryID,b.CName,b.Picture,b.InputPrice,b.OutputPrice,b.AmountFROMCommodity_Ca
6、tegoryASaFULLJOINCommodityInfoASbONa.CategoryID=b.CategoryID