好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁(yè) > 知識(shí)庫(kù) > DB2比較常用與實(shí)用sql語(yǔ)句總結(jié)

DB2比較常用與實(shí)用sql語(yǔ)句總結(jié)

熱門標(biāo)簽:濟(jì)南電銷外呼防封卡怎么樣 400電話怎么申請(qǐng)收費(fèi)標(biāo)準(zhǔn) 400電話辦理2273649Z空間 智能語(yǔ)音外呼系統(tǒng)打電話 高德地圖標(biāo)注生成 寧夏外呼系統(tǒng)方案 南京外呼系統(tǒng)租用 電銷外呼系統(tǒng)違規(guī) 怎樣在地圖標(biāo)注自己的信息
1、查找員工的編號(hào)、姓名、部門和出生日期,如果出生日期為空值,顯示日期不詳,并按部門排序輸出,日期格式為yyyy-mm-dd。
復(fù)制代碼 代碼如下:

select emp_no,emp_name,dept,isnull(convert(char(10),birthday,120),'日期不詳') birthday
from employee
order by dept



  2、查找與喻自強(qiáng)在同一個(gè)單位的員工姓名、性別、部門和職稱
復(fù)制代碼 代碼如下:

select emp_no,emp_name,dept,title
from employee
where emp_name>'喻自強(qiáng)' and dept in
(select dept from employee
where emp_name='喻自強(qiáng)')


  3、按部門進(jìn)行匯總,統(tǒng)計(jì)每個(gè)部門的總工資
復(fù)制代碼 代碼如下:

select dept,sum(salary)
from employee
group by dept


  4、查找商品名稱為14寸顯示器商品的銷售情況,顯示該商品的編號(hào)、銷售數(shù)量、單價(jià)和金額
復(fù)制代碼 代碼如下:

select a.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、在銷售明細(xì)表中按產(chǎn)品編號(hào)進(jìn)行匯總,統(tǒng)計(jì)每種產(chǎn)品的銷售數(shù)量和金額
復(fù)制代碼 代碼如下:

select prod_id,sum(qty) totqty,sum(qty*unit_price) totprice
from sale_item
group by prod_id



  6、使用convert函數(shù)按客戶編號(hào)統(tǒng)計(jì)每個(gè)客戶1996年的訂單總金額
復(fù)制代碼 代碼如下:

select cust_id,sum(tot_amt) totprice
from sales
where convert(char(4),order_date,120)='1996'
group by cust_id


  7、查找有銷售記錄的客戶編號(hào)、名稱和訂單總額
復(fù)制代碼 代碼如下:

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年中有銷售記錄的客戶編號(hào)、名稱和訂單總額
復(fù)制代碼 代碼如下:

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、查找一次銷售最大的銷售記錄
復(fù)制代碼 代碼如下:

select order_no,cust_id,sale_id,tot_amt
from sales
where tot_amt=
(select max(tot_amt)
from sales)

  10、查找至少有3次銷售的業(yè)務(wù)員名單和銷售日期
復(fù)制代碼 代碼如下:

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、用存在量詞查找沒(méi)有訂貨記錄的客戶名稱
復(fù)制代碼 代碼如下:

select cust_name
from customer a
where not exists
(select *
from sales b
where a.cust_id=b.cust_id)


  12、使用左外連接查找每個(gè)客戶的客戶編號(hào)、名稱、訂貨日期、訂單金額訂貨日期不要顯示時(shí)間,日期格式為yyyy-mm-dd按客戶編號(hào)排序,同一客戶再按訂單降序排序輸出
復(fù)制代碼 代碼如下:

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的銷售情況,要求顯示相應(yīng)的銷售員的姓名、性別,銷售日期、銷售數(shù)量和金額,其中性別用男、女表示
復(fù)制代碼 代碼如下:

select emp_name 姓名, 性別= case a.sex when 'm' then '男'
when 'f' then '女'
else '未'
end,
銷售日期= isnull(convert(char(10),c.order_date,120),'日期不詳'),
qty 數(shù)量, qty*unit_price as 金額
from employee a, sales b, sale_item c,product d
where d.prod_name='16M DRAM' and d.prod_id=c.prod_id and
a.emp_no=b.sale_id and b.order_no=c.order_no


  14、查找每個(gè)人的銷售記錄,要求顯示銷售員的編號(hào)、姓名、性別、產(chǎn)品名稱、數(shù)量、單價(jià)、金額和銷售日期
復(fù)制代碼 代碼如下:

select emp_no 編號(hào),emp_name 姓名, 性別= case a.sex when 'm' then '男'
when 'f' then '女'
else '未'
end,
prod_name 產(chǎn)品名稱,銷售日期= isnull(convert(char(10),c.order_date,120),'日期不詳'),
qty 數(shù)量, qty*unit_price as 金額
from employee a left outer join sales b on a.emp_no=b.sale_id , sale_item c,product d
where d.prod_id=c.prod_id and b.order_no=c.order_no



  15、查找銷售金額最大的客戶名稱和總貨款
復(fù)制代碼 代碼如下:

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) as cust_sum
from sales
group by cust_id ) c )
) d
where a.cust_id=d.cust_id


16、查找銷售總額少于1000元的銷售員編號(hào)、姓名和銷售額
復(fù)制代碼 代碼如下:

select 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
where a.emp_no=d.sale_id


  17、查找至少銷售了3種商品的客戶編號(hào)、客戶名稱、商品編號(hào)、商品名稱、數(shù)量和金額
復(fù)制代碼 代碼如下:

select a.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 and
c.order_no=d.order_no and a.cust_id in (
select cust_id
from (select cust_id,count(distinct prod_id) prodid
from (select cust_id,prod_id
from sales e,sale_item f
where e.order_no=f.order_no) g
group by cust_id
having count(distinct prod_id)>=3) h )


  18、查找至少與世界技術(shù)開發(fā)公司銷售相同的客戶編號(hào)、名稱和商品編號(hào)、商品名稱、數(shù)量和金額
復(fù)制代碼 代碼如下:

select a.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 and
c.order_no=d.order_no and not exists
(select f.*
from customer x ,sales e, sale_item f
where cust_name='世界技術(shù)開發(fā)公司' and x.cust_id=e.cust_id and
e.order_no=f.order_no and not exists
( select g.*
from sale_item g, sales h
where g.prod_id = f.prod_id and g.order_no=h.order_no and
h.cust_id=a.cust_id)
)

  19、查找表中所有姓劉的職工的工號(hào),部門,薪水
復(fù)制代碼 代碼如下:

select emp_no,emp_name,dept,salary
from employee
where emp_name like '劉%'


  20、查找所有定單金額高于2000的所有客戶編號(hào)
復(fù)制代碼 代碼如下:

select cust_id
from sales
where tot_amt>2000


  21、統(tǒng)計(jì)表中員工的薪水在4000-6000之間的人數(shù)
復(fù)制代碼 代碼如下:

select count(*)as 人數(shù)
from employee
where salary between 4000 and 6000


  22、查詢表中的同一部門的職工的平均工資,但只查詢"住址"是"上海市"的員工
復(fù)制代碼 代碼如下:

select avg(salary) avg_sal,dept
from employee
where addr like '上海市%'
group by dept


  23、將表中住址為"上海市"的員工住址改為"北京市"
復(fù)制代碼 代碼如下:

update employee
set addr like '北京市'
where addr like '上海市'


  24、查找業(yè)務(wù)部或會(huì)計(jì)部的女員工的基本信息。
復(fù)制代碼 代碼如下:

select emp_no,emp_name,dept
from employee
where sex='F'and dept in ('業(yè)務(wù)','會(huì)計(jì)')


  25、顯示每種產(chǎn)品的銷售金額總和,并依銷售金額由大到小輸出。
復(fù)制代碼 代碼如下:

select prod_id ,sum(qty*unit_price)
from sale_item
group by prod_id
order by sum(qty*unit_price) desc


26、選取編號(hào)界于'C0001'和'C0004'的客戶編號(hào)、客戶名稱、客戶地址。
復(fù)制代碼 代碼如下:

select CUST_ID,cust_name,addr
from customer
where cust_id between 'C0001' AND 'C0004'

  27、計(jì)算出一共銷售了幾種產(chǎn)品。
復(fù)制代碼 代碼如下:

select count(distinct prod_id) as '共銷售產(chǎn)品數(shù)'
from sale_item

  28、將業(yè)務(wù)部員工的薪水上調(diào)3%。
復(fù)制代碼 代碼如下:

update employee
set salary=salary*1.03
where dept='業(yè)務(wù)'

  29、由employee表中查找出薪水最低的員工信息。
復(fù)制代碼 代碼如下:

select *
from employee
where salary=
(select min(salary )
from employee )

  30、使用join查詢客戶姓名為"客戶丙"所購(gòu)貨物的"客戶名稱","定單金額","定貨日期","電話號(hào)碼"
復(fù)制代碼 代碼如下:

select a.cust_id,b.tot_amt,b.order_date,a.tel_no
from customer a join sales b
on a.cust_id=b.cust_id and cust_name like '客戶丙'


  31、由sales表中查找出訂單金額大于"E0013業(yè)務(wù)員在1996/10/15這天所接每一張訂單的金額"的所有訂單。
復(fù)制代碼 代碼如下:

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、計(jì)算'P0001'產(chǎn)品的平均銷售單價(jià)
復(fù)制代碼 代碼如下:

select avg(unit_price)
from sale_item
where prod_id='P0001'


  33、找出公司女員工所接的定單
復(fù)制代碼 代碼如下:

select sale_id,tot_amt
from sales
where sale_id in
(select sale_id from employee
where sex='F')



  34、找出同一天進(jìn)入公司服務(wù)的員工
復(fù)制代碼 代碼如下:

select a.emp_no,a.emp_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、找出目前業(yè)績(jī)超過(guò)232000元的員工編號(hào)和姓名。
復(fù)制代碼 代碼如下:

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)
您可能感興趣的文章:
  • DB2 常用命令小結(jié)
  • db2 導(dǎo)入導(dǎo)出單個(gè)表的操作詳解
  • DB2 日期和時(shí)間的函數(shù)應(yīng)用說(shuō)明
  • DB2 數(shù)據(jù)庫(kù)創(chuàng)建、表的ixf文件導(dǎo)出導(dǎo)入示例
  • DB2 常用命令速查(備忘)
  • DB2 自動(dòng)遞增字段實(shí)現(xiàn)方法
  • DB2 SELECT語(yǔ)句高級(jí)用法
  • DB2如何查看當(dāng)前用戶模式及切換用戶
  • CentOS下DB2數(shù)據(jù)庫(kù)安裝過(guò)程詳解
  • DB2新手使用的一些小筆記:新建實(shí)例、數(shù)據(jù)庫(kù)路徑不存在、客戶端連接 .
  • 比較SQL Server與Oracle、DB2
  • DB2數(shù)據(jù)庫(kù)的備份和恢復(fù)
  • Python連接DB2數(shù)據(jù)庫(kù)

標(biāo)簽:惠州 仙桃 潛江 茂名 平頂山 長(zhǎng)白山 貴港 唐山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《DB2比較常用與實(shí)用sql語(yǔ)句總結(jié)》,本文關(guān)鍵詞  DB2,比較,常用,與,實(shí)用,sql,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《DB2比較常用與實(shí)用sql語(yǔ)句總結(jié)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于DB2比較常用與實(shí)用sql語(yǔ)句總結(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 嗯灬啊灬把腿张开灬| 性生活电视| 亚洲乱亚洲乱妇| 91无码人妻精品一区二区三区蜜桃| 日本在线观看一区| 日本午色www高清视频| 国产精品露脸国语对白手机视频| 黄色一级片在线看| 性猛交乱妇免费看A片| 高潮颤抖大叫正在播放| 被粗大jib捣出了白浆香喷喷 | 台湾一级特黄精品大片| 亚洲欧洲久久久精品| 久久久久精品国产亚洲AV嘛盔豆 | 护士在办公室被躁中文字幕| 性生活三级电影| 成人wwxx| 女被c??扒衣服视频草莓视频| 他揉捏她两乳不停呻吟口述动| 国产精品久久久久久久9999 | 视频一区精品自拍| 星野小说| 天天做天天爱天天影视综合| 免费国产不卡午夜福在线观看| 色女人视频| 91国内揄拍国内精品对白| 香蕉久久综合| 《丰满的女邻居》在线观看| 中文字幕777| 日本动漫黄h在线观看免费 | 天天影视色香欲综合网网站| 国产精品dvd| 99国产精品99久久久久久| 被夫上司强迫中文在线观看| 特黄特色大片免费视频高清视频 | 精品伦子伦一区二区三区| 99久久久国产精品免费调教网站| 欧美一区二区三区激情啪啪| 女生呻吟声| free×性护士videos呻吟| 欧美一区二区三区精品|