DB2表数据导出、导⼊及常⽤sql使⽤总结
⼀.DB2数据的导出:
export to[path(例:D:"TABLE1.ixf)]of ixf select[字段(例: * or col1,col2,col3)]from TABLE1;
export to[path(例:D:"TABLE1.del)]of del select[字段(例: * or col1,col2,col3)]from TABLE1;
在DB2中对表数据的导出,可以⽤export命令,导出数据为⼀个⽂本⽂件,例如:
export to d:\ of del select id, name, age, address, note fromtesttable order by id;
可以⽤import命令从⽂本⽂件导⼊数据到表⾥,如:
⼆.DB2数据的导⼊:
import from[path(例:D:"TABLE1.ixf)]of ixf insert into TABLE1;
load from[path(例:D:"TABLE1.ixf)]of ixf insert into TABLE1;
load from[path(例:D:"TABLE1.ixf)]of ixf replace into TABLE1; //装⼊数据前,先删除已存在记录
load from[path(例:D:"TABLE1.ixf)]of ixf restart into TABLE1; //当装⼊失败时,重新执⾏,并记录导出结果和错误信息
import from[path(例:D:"TABLE1.ixf)]of ixf savecount 1000 messages [path(例:D:")]insert into TABLE1;//其中,savecount表⽰完成每1000条操作,记录⼀次.
存在⾃增长字段的数据导⼊:
load from[path(例:D:"TABLE1.ixf)]of ixf modified by identityignore insert into TABLE1;//加⼊modified byidentityignore.
解除装⼊数据时,发⽣的检查挂起:
SET INTEGRITYFOR TABLE1 CHECK IMMEDIATE UNCHECKED;
命令只对数据通过约束检查的表有效,如果执⾏还不能解除,有必要检查数据的完整性,是否不符合约束条件,并试图重新整理数据,再执⾏装⼊操作.
另外,对load和import,字⾯上的区别是:装⼊和导⼊,但仍未理解两者之间的区别.
只是性能上load显然优于import.(load 需要更多的权限)
三.DB2常⽤操作命令实例:
1、查员⼯的编号、姓名、部门和出⽣⽇期,如果出⽣⽇期为空值,显⽰⽇期不详,并按部门排序输出,⽇期格式为yyyy-mm-dd。代码如下:
select emp_no,emp_name,dept,isnull(convert(char(10),birthday,120),'⽇期不详')birthday from employee order by dept
2、查与喻⾃强在同⼀个单位的员⼯姓名、性别、部门和职称代码如下:
select emp_no,emp_name,dept,title from employee where emp_name<>'⼩明'and dept in (select dept from employee where emp_name='⼩明')
3、按部门进⾏汇总,统计每个部门的总⼯资代码如下:
select dept,sum(salary) from employee group by dept
4、查商品名称为14⼨显⽰器商品的销售情况,显⽰该商品的编号、销售数量、单价和⾦额代码如下:
selecta.prod_id,qty,unit_price,unit_price*qty totprice from sale_item a,product b where a.prod_id=b.prod_id and prod_name='14⼨显⽰器'
5、在销售明细表中按产品编号进⾏汇总,统计每种产品的销售数量和⾦额代码如下:
select prod_id,sum(qty) totqty,sum(qty*unit_price)totprice from sale_item group by prod_id
6、使⽤convert函数按客户编号统计每个客户1996年的订单总⾦额代码如下:
select cust_id,sum(tot_amt) totprice from sales where convert(char(4),order_date,120)='1996'group by cust_id
7、查有销售记录的客户编号、名称和订单总额代码如下:
select a.cust_id,cust_name,sum(tot_amt)totprice from customer a,sales b 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 p_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按客户编号排序,同⼀客户再按订单降序排序输出代
码如下:
selecta.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的销售情况,要求显⽰相应的销售员的姓名、性别,销售⽇期、销售数量和⾦额,其中性别⽤男、⼥表⽰代码如下:
select emp_name 姓名, 性别= casea.sex when'm'then'男'when'f'then'⼥'else'未'end, 销售⽇期=isnull(convert(char(10),c.order_date,120),'⽇期不详'), qty 数量, qty*unit_price as⾦额from employee a, sales b, sale_item c,product d
14、查每个⼈的销售记录,要求显⽰销售员的编号、姓名、性别、产品名称、数量、单价、⾦额和销售⽇期代码如下:
select emp_no 编号,emp_name 姓名, 性别= casea.sex when'm'then'男'when'f'then'⼥'else'未'end, prod_name 产品名称,销售⽇期=isnull(convert(char(10),c.order_date,120),'⽇期不详'), qty 数量, qty*unit_price as⾦额from employee a 15、查销售⾦额最⼤的客户名称和总货款代码如下:
select cust_name,d.cust_sum from customer a, (select cust_id,cust_sum from (select cust_id, sum(tot_amt) as cust_sum from sales group by cust_id ) b where b.cust_sum = ( select max(cust_sum) from (select cust_id, sum(tot_amt)
16、查销售总额少于1000元的销售员编号、姓名和销售额代码如下:
select distinct fromselect emp_no,emp_name,d.sale_sum from employee a, (select sale_id,sale_sum from (select sale_id, sum(tot_amt) as sale_sum from sales group by sale_id ) b where b.sale_sum <1000 ) d p_no=d.sale_id
17、查⾄少销售了3种商品的客户编号、客户名称、商品编号、商品名称、数量和⾦额代码如下:
selecta.cust_id,cust_name,b.prod_id,prod_name,d.qty,d.qty*d.unit_price from customer a, product b, sales c, sale_item d where a.cust_id=c.cust_id and d.prod_id=b.prod_id der_der_no and a.cust_id in ( select cust_id
18、查⾄少与世界技术开发公司销售相同的客户编号、名称和商品编号、商品名称、数量和⾦额代码如下:
selecta.cust_id,cust_name,d.prod_id,prod_name,qty,qty*unit_price from customer a, product b, sales c, sale_item d where a.cust_id=c.cust_id and d.prod_id=b.prod_id der_der_no and not exists (select f.*from customer x ,sales 19、查表中所有姓刘的职⼯的⼯号,部门,薪⽔代码如下:
select emp_no,emp_name,dept,salary from employee where emp_name like '刘%'
20、查所有定单⾦额⾼于2000的所有客户编号代码如下:
select cust_id from sales where tot_amt>2000
21、统计表中员⼯的薪⽔在4000-6000之间的⼈数代码如下:
select count(*)as ⼈数 from employee where salary between 4000 and 6000
22、查询表中的同⼀部门的职⼯的平均⼯资,但只查询"住址"是"上海市"的员⼯代码如下:
select avg(salary) avg_sal,dept from employee where addr like '上海市%' group by dept
23、将表中住址为"上海市"的员⼯住址改为"北京市"代码如下:
update employee set addr like '北京市' where addr like '上海市'
24、查业务部或会计部的⼥员⼯的基本信息。代码如下:
select emp_no,emp_name,dept from employee where sex='F'and dept in ('业务','会计')
25、显⽰每种产品的销售⾦额总和,并依销售⾦额由⼤到⼩输出。代码如下:
select prod_id ,sum(qty*unit_price) from sale_item group by prod_id order by sum(qty*unit_price) desc
26、选取编号界于'C0001'和'C0004'的客户编号、客户名称、客户地址。代码如下:
select CUST_ID,cust_name,addr from customer where cust_id between 'C0001' AND 'C0004'
27、计算出⼀共销售了⼏种产品。代码如下:
select count(distinct prod_id) as '共销售产品数' from sale_item
28、将业务部员⼯的薪⽔上调3%。代码如下:
update employee set salary=salary*1.03 where dept='业务'
29、由employee表中查出薪⽔最低的员⼯信息。代码如下:
select * from employee where salary= (select min(salary ) from employee )
30、使⽤join查询客户姓名为"客户丙"所购货物的"客户名称","定单⾦额","定货⽇期","电话号码"  代码如下:
selecta.cust__der_l_no from customer a join sales b on a.cust_id=b.cust_id and cust_name like '客户丙'
31、由sales表中查出订单⾦额⼤于"E0013业务员在1996/10/15这天所接每⼀张订单的⾦额"的所有订单。代码如下:
select * from sales where tot_amt>all (select tot_amt from sales where sale_id='E0013'and order_date='1996/10/15') order by tot_amt
32、计算'P0001'产品的平均销售单价代码如下:
select avg(unit_price) from sale_item where prod_id='P0001'
33、出公司⼥员⼯所接的定单代码如下:
select sale_id,tot_amt from sales where sale_id in (select sale_id from employee where sex='F')
34、出同⼀天进⼊公司服务的员⼯代码如下:
p_p_name,a.date_hired from employee a join employee b on (a.emp_no!=b.emp
_no and a.date_hired=b.date_hired) order by a.date_hired 35、出⽬前业绩超过232000元的员⼯编号和姓名。代码如下:
select emp_no,emp_name from employee where emp_no in (select sale_id from sales group by sale_id having sum(tot_amt)<232000)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。