SQLite Glob 子句
sqlite glob 子句
sqlite 的 glob 運算符是用來匹配通配符指定模式的文本值。如果搜索表達式與模式表達式匹配,glob 運算符將返回真(true),也就是 1。與 like 運算符不同的是,glob 是大小寫敏感的,對于下面的通配符,它遵循 unix 的語法。
- 星號 (*)
- 問號 (?)
星號(*)代表零個、一個或多個數字或字符。問號(?)代表一個單一的數字或字符。這些符號可以被組合使用。
1. 語法
* 和 ? 的基本語法如下:
select from table_name where column glob 'xxxx*' or select from table_name where column glob '*xxxx*' or select from table_name where column glob 'xxxx?' or select from table_name where column glob '?xxxx' or select from table_name where column glob '?xxxx?' or select from table_name where column glob '????'
您可以使用 and 或 or 運算符來結合 n 個數量的條件。在這里,xxxx 可以是任何數字或字符串值。
2. 范例
下面一些范例演示了 帶有 '*' 和 '?' 運算符的 glob 子句不同的地方:
語句 | 描述 |
---|---|
where salary glob '200*' | 查找以 200 開頭的任意值 |
where salary glob '*200*' | 查找任意位置包含 200 的任意值 |
where salary glob '?00*' | 查找第二位和第三位為 00 的任意值 |
where salary glob '2??' | 查找以 2 開頭,且長度至少為 3 個字符的任意值 |
where salary glob '*2' | 查找以 2 結尾的任意值 |
where salary glob '?2*3' | 查找第二位為 2,且以 3 結尾的任意值 |
where salary glob '2???3' | 查找長度為 5 位數,且以 2 開頭以 3 結尾的任意值 |
讓我們舉一個實際的例子,假設 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
下面是一個范例,它顯示 company 表中 age 以 2 開頭的所有記錄:
sqlite> select * from company where age glob '2*';
這將產生以下結果:
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 85000.0 6 kim 22 south-hall 45000.0 7 james 24 houston 10000.0
下面是一個范例,它顯示 company 表中 address 文本里包含一個連字符(-)的所有記錄:
sqlite> select * from company where address glob '*-*';
這將產生以下結果:
id name age address salary ---------- ---------- ---------- ---------- ---------- 4 mark 25 rich-mond 65000.0 6 kim 22 south-hall 45000.0