MySQL 查询如何从字符串中搜索精确单词?
若要从字符串中搜索精确单词,请使用以下语法 -
select *from yourTableName where yourColumnName regexp '(^|[[:space:]])yourWord([[:space:]]|$)';
让我们先创建一个表 -
mysql> create table DemoTable ( Title text ); Query OK, 0 rows affected (0.23 sec)
使用插入命令向表中插入一些记录 -
mysql> insert into DemoTable values('This is the Introduction to Java');
Query OK, 1 row affected (0.05 sec)
mysql> insert into DemoTable values('This is the Introduction to MongoDB');
Query OK, 1 row affected (0.07 sec)
mysql> insert into DemoTable values('This is the Introduction to MySQL');
Query OK, 1 row affected (0.06 sec)使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将生成以下输出 -
+-------------------------------------+ | Title | +-------------------------------------+ | This is the Introduction to Java | | This is the Introduction to MongoDB | | This is the Introduction to MySQL | +-------------------------------------+ 3 rows in set (0.00 sec)
以下是用于从字符串中搜索精确单词的查询。
mysql> select *from DemoTable where Title regexp '(^|[[:space:]])MySQL([[:space:]]|$)';
这将生成以下输出 -
+-----------------------------------+ | Title | +-----------------------------------+ | This is the Introduction to MySQL | +-----------------------------------+ 1 row in set (0.13 sec)
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP