实验16-13 请在testdb中:查找在1996年10月中有销售记录的客户

Posted masterchd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验16-13 请在testdb中:查找在1996年10月中有销售记录的客户相关的知识,希望对你有一定的参考价值。

在testdb是产品销售数据库,请在testdb中:查找在1996年10月中有销售记录的客户编号、名称和订单总额。

select sales.cust_id,cust_name,tot_amt
from sales,customer
where sales.cust_id=customer.cust_id
and order_date between ‘1996-10-1‘ and ‘1996-10-31‘

  

以上是关于实验16-13 请在testdb中:查找在1996年10月中有销售记录的客户的主要内容,如果未能解决你的问题,请参考以下文章