实验16-14 请在testdb中:查找每个客户(包括没有订单的客户)的客户

Posted masterchd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验16-14 请在testdb中:查找每个客户(包括没有订单的客户)的客户相关的知识,希望对你有一定的参考价值。

testdb是产品销售数据库,请在testdb中:查找每个客户(包括没有订单的客户)的客户编号、名称、订单日期、订货金额,其中订单日期格式为yyyy-mm-dd,按客户编号排序,同一客户再按订单金额降序排序输出。

select  customer.cust_id,cust_name,CONVERT(varchar(10),order_date,121)as order_date,tot_amt
from  customer left outer join  sales
on (customer.cust_id=sales.cust_id)
order by customer.cust_id asc,sales.tot_amt 

  

以上是关于实验16-14 请在testdb中:查找每个客户(包括没有订单的客户)的客户的主要内容,如果未能解决你的问题,请参考以下文章

实验16-09 请在testdb中:查询既订购了“16M DRAM”商品...

实验14-6 授权

实验15-6 创建用户并授权

实验10-6 在产品销售数据库TestDB中完成查询

实验9-6 编写一个存储过程proc_test_stat1

数据查询 sql sever 2005