资源描述:
《实例学习sql的select命令》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实例学习SQL的Select命令1、查找员工的编号、姓名、部门和出生日期,如果出生日期为空值,--显示日期不详,并按部门排序输出,日期格式为yyyy-mm-dd。selectemp_no,emp_name,dept,isnull(convert(char(10),birthday,120),'日期不详')birthdayfromemployeeorderbydept--2、查找与喻自强在同一个单位的员工姓名、性别、部门和职称selectemp_no,emp_name,dept,titlefromemployeewhereemp_name<>'喻自强'andde
2、ptin(selectdeptfromemployeewhereemp_name='喻自强')--3、按部门进行汇总,统计每个部门的总工资selectdept,sum(salary)fromemployeegroupbydept--4、查找商品名称为14寸显示器商品的销售情况,--显示该商品的编号、销售数量、单价和金额selecta.prod_id,qty,unit_price,unit_price*qtytotpricefromsale_itema,productbwherea.prod_id=b.prod_idandprod_name='14寸显示器'--
3、5、在销售明细表中按产品编号进行汇总,统计每种产品的销售数量和金额selectprod_id,sum(qty)totqty,sum(qty*unit_price)totpricefromsale_itemgroupbyprod_id--6、使用convert函数按客户编号统计每个客户1996年的订单总金额selectcust_id,sum(tot_amt)totpricefromsaleswhereconvert(char(4),order_date,120)='1996'groupbycust_id--7、查找有销售记录的客户编号、名称和订单总额select
4、a.cust_id,cust_name,sum(tot_amt)totpricefromcustomera,salesbwherea.cust_id=b.cust_idgroupbya.cust_id,cust_name--8、查找在1997年中有销售记录的客户编号、名称和订单总额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次销售的业务员名单和销售日期selectemp_name,order_datefromemployeea,salesbwhereemp_no=sale_idanda.emp_noin(selectsale_idfromsalesgroupbysale_idhavingcount(*)>=3)order
6、byemp_name--11、用存在量词查找没有订货记录的客户名称selectcust_namefromcustomerawherenotexists(select*fromsalesbwherea.cust_id=b.cust_id)--12、使用左外连接查找每个客户的客户编号、名称、订货日期、订单金额--订货日期不要显示时间,日期格式为yyyy-mm-dd--按客户编号排序,同一客户再按订单降序排序输出selecta.cust_id,cust_name,convert(char(10),order_date,120),tot_amtfromcustomer
7、aleftouterjoinsalesbona.cust_id=b.cust_idorderbya.cust_id,tot_amtdesc--13、查找16MDRAM的销售情况,要求显示相应的销售员的姓名、--性别,销售日期、销售数量和金额,其中性别用男、女表示selectemp_name姓名,性别=casea.sexwhen'm'then'男'when'f'then'女'else'未'end,销售日期=isnull(convert(char(10),c.order_date,120),'日期不详'),qty数量,qty*unit_priceas金额frome
8、mployeea,salesb,sal