sqlite 子查詢
子查詢或稱為內(nèi)部查詢、嵌套查詢,指的是在 sqlite 查詢中的 where 子句中嵌入查詢語句。
一個(gè) select 語句的查詢結(jié)果能夠作為另一個(gè)語句的輸入值。
子查詢可以與 select、insert、update 和 delete 語句一起使用,可伴隨著使用運(yùn)算符如 =、<、>、>=、<=、in、between 等。
以下是子查詢必須遵循的幾個(gè)規(guī)則:
- 子查詢必須用括號括起來。
- 子查詢在 select 子句中只能有一個(gè)列,除非在主查詢中有多列,與子查詢的所選列進(jìn)行比較。
- order by 不能用在子查詢中,雖然主查詢可以使用 order by??梢栽谧硬樵冎惺褂?group by,功能與 order by 相同。
- 子查詢返回多于一行,只能與多值運(yùn)算符一起使用,如 in 運(yùn)算符。
- between 運(yùn)算符不能與子查詢一起使用,但是,between 可在子查詢內(nèi)使用。
1. select 語句中的子查詢使用
子查詢通常與 select 語句一起使用?;菊Z法如下:
select column_name [, column_name ] from table1 [, table2 ] where column_name operator (select column_name [, column_name ] from table1 [, table2 ] [where])
假設(shè) company 表有以下記錄:
id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 20000.0 2 allen 25 texas 15000.0 3 teddy 23 norway 20000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0 6 kim 22 south-hall 45000.0 7 james 24 houston 10000.0
現(xiàn)在,讓我們檢查 select 語句中的子查詢使用:
sqlite> select * from company where id in (select id from company where salary > 45000) ;
這將產(chǎn)生以下結(jié)果:
id name age address salary ---------- ---------- ---------- ---------- ---------- 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0
2. insert 語句中的子查詢使用
子查詢也可以與 insert 語句一起使用。insert 語句使用子查詢返回的數(shù)據(jù)插入到另一個(gè)表中。在子查詢中所選擇的數(shù)據(jù)可以用任何字符、日期或數(shù)字函數(shù)修改。
基本語法如下:
insert into table_name [ (column1 [, column2 ]) ] select [ *|column1 [, column2 ] from table1 [, table2 ] [ where value operator ]
假設(shè) company_bkp 的結(jié)構(gòu)與 company 表相似,且可使用相同的 create table 進(jìn)行創(chuàng)建,只是表名改為 company_bkp?,F(xiàn)在把整個(gè) company 表復(fù)制到 company_bkp,語法如下:
sqlite> insert into company_bkp select * from company where id in (select id from company) ;
3. update 語句中的子查詢使用
子查詢可以與 update 語句結(jié)合使用。當(dāng)通過 update 語句使用子查詢時(shí),表中單個(gè)或多個(gè)列被更新。
基本語法如下:
update table set column_name = new_value [ where operator [ value ] (select column_name from table_name) [ where) ]
假設(shè),我們有 company_bkp 表,是 company 表的備份。
下面的范例把 company 表中所有 age 大于或等于 27 的客戶的 salary 更新為原來的 0.50 倍:
sqlite> update company set salary = salary * 0.50 where age in (select age from company_bkp where age >= 27 );
這將影響兩行,最后 company 表中的記錄如下:
id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 10000.0 2 allen 25 texas 15000.0 3 teddy 23 norway 20000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 42500.0 6 kim 22 south-hall 45000.0 7 james 24 houston 10000.0
4. delete 語句中的子查詢使用
子查詢可以與 delete 語句結(jié)合使用,就像上面提到的其他語句一樣。
基本語法如下:
delete from table_name [ where operator [ value ] (select column_name from table_name) [ where) ]
假設(shè),我們有 company_bkp 表,是 company 表的備份。
下面的范例刪除 company 表中所有 age 大于或等于 27 的客戶記錄:
sqlite> delete from company where age in (select age from company_bkp where age > 27 );
這將影響兩行,最后 company 表中的記錄如下:
id name age address salary ---------- ---------- ---------- ---------- ---------- 2 allen 25 texas 15000.0 3 teddy 23 norway 20000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 42500.0 6 kim 22 south-hall 45000.0 7 james 24 houston 10000.0