WEB开发网
开发学院数据库DB2 学习DB2数据库必须掌握的五十四条常用语句 阅读

学习DB2数据库必须掌握的五十四条常用语句

 2009-05-18 16:15:11 来源:WEB开发网   
核心提示: where a.cust_id=b.cust_idgroup by a.cust_id,cust_name8、查找在1997年中有销售记录的客户编号、名称和订单总额select a.cust_id,cust_name,sum(tot_amt) totpricefrom customer a

where a.cust_id=b.cust_id

group by a.cust_id,cust_name

8、查找在1997年中有销售记录的客户编号、名称和订单总额

select a.cust_id,cust_name,sum(tot_amt) totprice

from customer a,sales b

where a.cust_id=b.cust_id and convert(char(4),order_date,120)='1997'

group by a.cust_id,cust_name

9、查找一次销售最大的销售记录

select order_no,cust_id,sale_id,tot_amt

from sales

where tot_amt=

(select max(tot_amt)

from sales)

10、查找至少有3次销售的业务员名单和销售日期

select emp_name,order_date

from employee a,sales b

where emp_no=sale_id and a.emp_no in

(select sale_id

from sales

group by sale_id

having count(*)>=3)

order by emp_name

11、用存在量词查找没有订货记录的客户名称

select cust_name

from customer a

where not exists

(select *

from sales b

where a.cust_id=b.cust_id)

12、使用左外连接查找每个客户的客户编号、名称、订货日期、订单金额订货日期不要显示时间,日期格式为yyyy-mm-dd按客户编号排序,同一客户再按订单降序排序输出

select a.cust_id,cust_name,convert(char(10),order_date,120),tot_amt

from customer a left outer join sales b on a.cust_id=b.cust_id

order by a.cust_id,tot_amt desc

13、查找16M DRAM的销售情况,要求显示相应的销售员的姓名、性别,销售日期、销售数量和金额,其中性别用男、女表示

上一页  1 2 3 4 5 6 7  下一页

Tags:学习 DB 数据库

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接