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
原文地址:https://www.cnblogs.com/masterchd/p/9337632.html
时间: 2024-10-11 20:59:19