sqlite的 where 子句用于指定從一個表或多個表中獲取數據的條件。
如果滿足給定的條件,即為真(true)時,則從表中返回特定的值。您可以使用 where 子句來過濾記錄,只獲取需要的記錄。
where 子句不僅可用在 select 語句中,它也可用在 update、delete 語句中,等等,這些我們將在隨后的章節(jié)中學習到。
1. 語法
sqlite 的帶有 where 子句的 select 語句的基本語法如下:
select column1, column2, columnn from table_name where [condition]
2. 范例
您還可以使用比較或邏輯運算符指定條件,比如 >、<、=、like、not,等等。假設 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
下面的范例演示了 sqlite 邏輯運算符的用法。下面的 select 語句列出了 age 大于等于 25 且工資大于等于 65000.00 的所有記錄:
sqlite> select * from company where age >= 25 and salary >= 65000; id name age address salary ---------- ---------- ---------- ---------- ---------- 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0
下面的 select 語句列出了 age 大于等于 25 或工資大于等于 65000.00 的所有記錄:
sqlite> select * from company where age >= 25 or salary >= 65000; id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 20000.0 2 allen 25 texas 15000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0
下面的 select 語句列出了 age 不為 null 的所有記錄,結果顯示所有的記錄,意味著沒有一個記錄的 age 等于 null:
sqlite> select * from company where age is not null; 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
下面的 select 語句列出了 name 以 'ki' 開始的所有記錄,'ki' 之后的字符不做限制:
sqlite> select * from company where name like 'ki%'; id name age address salary ---------- ---------- ---------- ---------- ---------- 6 kim 22 south-hall 45000.0
下面的 select 語句列出了 name 以 'ki' 開始的所有記錄,'ki' 之后的字符不做限制:
sqlite> select * from company where name glob 'ki*'; id name age address salary ---------- ---------- ---------- ---------- ---------- 6 kim 22 south-hall 45000.0
下面的 select 語句列出了 age 的值為 25 或 27 的所有記錄:
sqlite> select * from company where age in ( 25, 27 ); id name age address salary ---------- ---------- ---------- ---------- ---------- 2 allen 25 texas 15000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0
下面的 select 語句列出了 age 的值既不是 25 也不是 27 的所有記錄:
sqlite> select * from company where age not in ( 25, 27 ); id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 20000.0 3 teddy 23 norway 20000.0 6 kim 22 south-hall 45000.0 7 james 24 houston 10000.0
下面的 select 語句列出了 age 的值在 25 與 27 之間的所有記錄:
sqlite> select * from company where age between 25 and 27; id name age address salary ---------- ---------- ---------- ---------- ---------- 2 allen 25 texas 15000.0 4 mark 25 rich-mond 65000.0 5 david 27 texas 85000.0
下面的 select 語句使用 sql 子查詢,子查詢查找 salary > 65000 的帶有 age 字段的所有記錄,后邊的 where 子句與 exists 運算符一起使用,列出了外查詢中的 age 存在于子查詢返回的結果中的所有記錄:
sqlite> select age from company where exists (select age from company where salary > 65000); age ---------- 32 25 23 25 27 22 24
下面的 select 語句使用 sql 子查詢,子查詢查找 salary > 65000 的帶有 age 字段的所有記錄,后邊的 where 子句與 > 運算符一起使用,列出了外查詢中的 age 大于子查詢返回的結果中的年齡的所有記錄:
sqlite> select * from company where age > (select age from company where salary > 65000); id name age address salary ---------- ---------- ---------- ---------- ---------- 1 paul 32 california 20000.0