基本sql歸納

2021-09-26 01:16:33 字數 2493 閱讀 9357

不論乙個sql中涉及到多個表,每次都用兩個表(結果集)操作,得到新的結果後,再和下乙個表(結果集)操作。

避免在select f1,(select f2 from tableb )… from tablea 這樣得到欄位列。直接用tablea和tableb關聯得到a.f1,b.f2就可以了。

3.避免隱含的型別轉換

如select id from employee where emp_id=『8』 (錯)

select id from employee where emp_id=8 (對)

emp_id是整數型,用』8』會預設啟動型別轉換,增加查詢的開銷。

儘量減少使用正規表示式,盡量不使用萬用字元。

使用關鍵字代替函式

如:select id from employee where upper(dept) like 『tech_db』 (錯)

select id from employee where substr(dept,1,4)=『tech』 (錯)

select id from employee where dept like 『tech%』 (對)

6.不要在字段上用轉換函式,盡量在常量上用

如:select id from employee where to_char(create_date,『yyyy-mm-dd』)=『2012-10-31』 (錯)

select id from employee where create_date=to_date(『2012-10-31』,『yyyy-mm-dd』) (對)

7.不使用聯接做查詢

如:select id from employee where first_name || last_name like 『jo%』 (錯)

盡量避免前後都用萬用字元

如:select id from employee where dept like 『%tech%』 (錯)

select id from employee where dept like 『tech%』 (對)

判斷條件順序

如:select id from employee where creat_date-30>to_date(『2012-10-31』,『yyyy-mm-dd』) (錯)

select id from employee where creat_date >to_date(『2012-10-31』,『yyyy-mm-dd』)+30 (對)

盡量使用exists而非in

當然這個也要根據記錄的情況來定用exists還是用in, 通常的情況是用exists

select id from employee where salary in (select salary from emp_level where…) (錯)

select id from employee where salary exists(select 『x』 from emp_level where …) (對)

使用not exists 而非not in

和上面的類似

減少查詢表的記錄數範圍

13.正確使用索引

索引可以提高速度,一般來說,選擇度越高,索引的效率越高。

索引型別

唯一索引,對於查詢用到的字段,盡可能使用唯一索引。

還有一些其他型別,如位圖索引,在性別字段,只有男女的字段上用。

在經常進行連線,但是沒有指定為外來鍵的列上建立索引

在頻繁進行排序會分組的列上建立索引,如經常做group by 或 order by 操作的字段。

在條件表示式中經常用到的不同值較多的列上建立檢索,在不同值少的列上不建立索引。如性別列上只有男,女兩個不同的值,就沒必要建立索引(或建立位圖索引)。如果建立索引不但不會提高查詢效率,反而會嚴重降低更新速度。

在值比較少的字段做order by時,翻頁會出現記錄紊亂問題,要帶上id欄位一起做order by.

不要使用空字串進行查詢

如:select id from employee where emp_name like 『%%』 (錯)

盡量對經常用作group by的關鍵字段做索引。

正確使用表關聯

利用外連線替換效率十分低下的not in運算,大大提高執行速度。

如:select a.id from employee a where a.emp_no not in (select emp_no from employee1 where job =『sale』) (錯)

使用臨時表

在必要的情況下,為減少讀取次數,可以使用經過索引的臨時表加快速度。

如:select e.id from employee e ,dept d where e.dept_id=d.id and e.empno>1000 order by e.id (錯)

select id,empno from employee into temp_empl where empno>1000 order by id

select m.id from temp_emp1 m,dept d where m.empno=d.id (對)

SQL基礎知識歸納總結

sql基礎知識歸納總結,有需要的朋友可以參考下。1 sql語句主要分類 1 ddl data definition languages,資料定義語言,常用的語句關鍵字主要包括create drop alter等 2 dml data manipulation language,資料操作語句,常用的語...

順序表基本操作歸納整理

think 本篇blog主要 包括順序表的4中基本操作 查詢 插入,移位,刪除 include include include define listincreasment 100 每次分配元素的個數 define listsize 10 順序儲存的最大個數 define overflow 1 de...

幾種基本排序演算法的總結歸納

概述 排序有內部排序和外部排序 我們討論的八大排序是內部排序 當n較大時,則應採用時間複雜度為o nlog2n 的排序演算法 快速排序 堆排序或歸併排序。快速排序shimuqian基於比較的內部排序中被認為最好的方法,當待排序的關鍵字是隨機分布時,快速排序的平均時間最短 各種排序的穩定性,時間複雜度...