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