SQL 通配符
sql 通配符
通配符是在搜索數(shù)據(jù)時,可用于替代字符串中的任何其他字符。通配符必須與 sql like 操作符一起使用。
1. sql 可使用的通配符
通配符 | 描述 |
---|---|
% | 替代 0 個或多個字符 |
_ | 替代一個字符 |
[charlist] | 字符列中的任何單一字符 |
[^charlist] 或 [!charlist] |
不在字符列中的任何單一字符 |
樣本數(shù)據(jù)庫
在本教程中,我們將使用 yapf 樣本數(shù)據(jù)庫。
下面是選自 "websites" 表的數(shù)據(jù):
+----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | | 2 | 淘寶 | https://www.taobao.com/ | 13 | cn | | 3 | 碩編程 | http:/// | 4689 | cn | | 4 | 微博 | http://weibo.com/ | 20 | cn | | 5 | facebook | https://www.facebook.com/ | 3 | usa | | 7 | stackoverflow | http://stackoverflow.com/ | 0 | ind | +----+---------------+---------------------------+-------+---------+
2. sql % 通配符
下面的 sql 語句選取 url 以字母 "https" 開始的所有網(wǎng)站:
select * from websites where url like 'https%'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | | 2 | 淘寶 | https://www.taobao.com/ | 13 | cn | | 5 | facebook | https://www.facebook.com/ | 3 | usa | +----+---------------+---------------------------+-------+---------+
下面的 sql 語句選取 url 包含模式 "oo" 的所有網(wǎng)站:
select * from websites where url like '%oo%'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | | 5 | facebook | https://www.facebook.com/ | 3 | usa | +----+---------------+---------------------------+-------+---------+
3. sql _ 通配符
下面的 sql 語句選取 name 以一個任意字符開始,然后是 "oogle" 的所有客戶:
select * from websites where name like '_oogle'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | +----+---------------+---------------------------+-------+---------+
下面的 sql 語句選取 name 以 "g" 開始,然后是一個任意字符,然后是 "o",然后是一個任意字符,然后是 "le" 的所有網(wǎng)站:
select * from websites where name like 'g_o_le'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | +----+---------------+---------------------------+-------+---------+
4. sql [charlist] 通配符
mysql 中使用 regexp 或 not regexp 運算符 (或 rlike 和 not rlike) 來操作正則表達式。
下面的 sql 語句選取 name 以 "g"、"f" 或 "s" 開始的所有網(wǎng)站:
select * from websites where name regexp '^[gfs]'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | | 5 | facebook | https://www.facebook.com/ | 3 | usa | | 7 | stackoverflow | http://stackoverflow.com/ | 0 | ind | +----+---------------+---------------------------+-------+---------+
下面的 sql 語句選取 name 以 a 到 h 字母開頭的網(wǎng)站:
select * from websites where name regexp '^[a-h]'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | | 5 | facebook | https://www.facebook.com/ | 3 | usa | +----+---------------+---------------------------+-------+---------+
下面的 sql 語句選取 name 不以 a 到 h 字母開頭的網(wǎng)站:
select * from websites where name regexp '^[^a-h]'; 執(zhí)行結(jié)果: +----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 2 | 淘寶 | https://www.taobao.com/ | 13 | cn | | 3 | 碩編程 | http:/// | 4689 | cn | | 4 | 微博 | http://weibo.com/ | 20 | cn | | 7 | stackoverflow | http://stackoverflow.com/ | 0 | ind | +----+---------------+---------------------------+-------+---------+