資源描述:
《Select 實(shí)例精解》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、Select實(shí)例精解-1、查找員工的編號(hào)、姓名、部門和出生日期,如果出生日期為空值,--顯示日期不詳,并按部門排序輸出,日期格式為yyyy-mm-dd。selectemp_no,emp_name,dept,isnull(convert(char(10),birthday,120),'日期不詳')birthdayfromemployeeorderbydept--2、查找與喻自強(qiáng)在同一個(gè)單位的員工姓名、性別、部門和職稱selectemp_no,emp_name,dept,titlefromemployeewhereemp_name<>'喻自強(qiáng)'anddeptin
2、(selectdeptfromemployeewhereemp_name='喻自強(qiáng)')--3、按部門進(jìn)行匯總,統(tǒng)計(jì)每個(gè)部門的總工資selectdept,sum(salary)fromemployeegroupbydept--4、查找商品名稱為14寸顯示器商品的銷售情況,--顯示該商品的編號(hào)、銷售數(shù)量、單價(jià)和金額selecta.prod_id,qty,unit_price,unit_price*qtytotpricefromsale_itema,productbwherea.prod_id=b.prod_idandprod_name='14寸顯示器'--5、在
3、銷售明細(xì)表中按產(chǎn)品編號(hào)進(jìn)行匯總,統(tǒng)計(jì)每種產(chǎn)品的銷售數(shù)量和金額selectprod_id,sum(qty)totqty,sum(qty*unit_price)totpricefromsale_itemgroupbyprod_id--6、使用convert函數(shù)按客戶編號(hào)統(tǒng)計(jì)每個(gè)客戶1996年的訂單總金額selectcust_id,sum(tot_amt)totpricefromsaleswhereconvert(char(4),order_date,120)='1996'groupbycust_id--7、查找有銷售記錄的客戶編號(hào)、名稱和訂單總額selecta.
4、cust_id,cust_name,sum(tot_amt)totpricefromcustomera,salesbwherea.cust_id=b.cust_id9groupbya.cust_id,cust_name--8、查找在1997年中有銷售記錄的客戶編號(hào)、名稱和訂單總額selecta.cust_id,cust_name,sum(tot_amt)totpricefromcustomera,salesbwherea.cust_id=b.cust_idandconvert(char(4),order_date,120)='1997'groupbya.cu
5、st_id,cust_name--9、查找一次銷售最大的銷售記錄selectorder_no,cust_id,sale_id,tot_amtfromsaleswheretot_amt=(selectmax(tot_amt)fromsales)--10、查找至少有3次銷售的業(yè)務(wù)員名單和銷售日期selectemp_name,order_datefromemployeea,salesbwhereemp_no=sale_idanda.emp_noin(selectsale_idfromsalesgroupbysale_idhavingcount(*)>=3)orde
6、rbyemp_name--11、用存在量詞查找沒(méi)有訂貨記錄的客戶名稱selectcust_namefromcustomerawherenotexists(select*fromsalesbwherea.cust_id=b.cust_id)--12、使用左外連接查找每個(gè)客戶的客戶編號(hào)、名稱、訂貨日期、訂單金額--訂貨日期不要顯示時(shí)間,日期格式為yyyy-mm-dd--按客戶編號(hào)排序,同一客戶再按訂單降序排序輸出selecta.cust_id,cust_name,convert(char(10),order_date,120),tot_amtfromcustom
7、eraleftouterjoinsalesbona.cust_id=b.cust_idorderbya.cust_id,tot_amtdesc--13、查找16MDRAM的銷售情況,要求顯示相應(yīng)的銷售員的姓名、--性別,銷售日期、銷售數(shù)量和金額,其中性別用男、女表示selectemp_name姓名,性別=casea.sexwhen'm'then'男'when'f'then'女'9else'未'end,銷售日期=isnull(convert(char(10),c.order_date,120),'日期不詳'),qty數(shù)量,qty*unit_priceas金額f
8、romemployeea,salesb,sale_i