oracle學習筆記(五) SQL操作符

2022-01-12 09:21:26 字數 755 閱讀 8925

--查詢20<=age<=21的學生資料

select * from student where age between 20 and 21

--查詢年齡是20或21的學生資料

select * from student where age in (20,21)

--姓氏為張的學生,張二,張三,張四五都符合條件

select * from student where name like '張%';

--名字含有三的

select * from student where name like '%三%';

--姓氏為張,名字只有兩個字的學生

select * from student where name like '張_';

--名字中包含%號的

select * from student where name like '%\%%' escape '\' ;

與,或

-- 查詢student表中你的num和name列,並把這兩列顯示出來

select num||,||name from student

下一章《高階查詢》再講

a)union 聯合,將兩個查詢結果拼起來

b)union all 聯合所有,多出現重複行

c)intersect 交集

d)minus 減集

Oracle基操筆記(五) DML

dml data manipulationlanguage 顧名思義,運算元據的語言,亦可理解為modify 更改 公式insert into tb name col1,col2,values v1,v2,insert into tb name values v1,v2,insert into tb...

SQL學習筆記(五)

1.主鍵 primary key 主鍵的含義 主鍵是指乙個列或多列的組合,其值能唯一地標識表中的每一行,通過它可強制表的實體完整性。主鍵主要是用於其他表的外來鍵關聯,以及本記錄的修改與刪除。主鍵的用法 在每個資料表中,主鍵有且只能有乙個字段 例項 在資料庫中建立乙個departmentid表,並將資...

oracle學習筆記五

top n 分析的語法 select column list rownum from select column list from table order by top n column where rownum n select empno,ename,job from select rownu...