1、在sales表中查詢出銷售金額最高的訂單(訂單號,銷售金額,訂購日期)。
select order_no,total_amt,order_date
from sales
where total_amt=
(select
max(total_amt
)from sales )
2.由sales表中查詢出訂單金額大於「e0016業務員所接任一張訂單的金額」的所有訂單,並顯示承接這些訂單的業務員和該訂單的金額。
;3、找出公司女業務員所接的訂單。
'女')
oracle中的表及其相關操作
title date br description oracle中的表及其相關操作 2020 02 20 07 25 01 0800 oracle 資料庫 表示資料庫基本的結構 表是資料庫的最基本的邏輯結構,一切資料都存放在表中,其它資料庫物件 索引 檢視 同義詞等 都是為了使用者很好地操作表中的資...
表的相關操作
1.建立表 1 用create table 命令建立表 語法 create table tabl name column name as computed column expression n on textimage on 例子 開啟cust資料庫,建立乙個表,該錶包含了學生的有關資訊,即有學號...
順序表的相關操作
include include include struct arr void init arr struct arr parr,int length bool insert arr struct arr parr,int pos,int pval bool delete arr struct ar...