Computer >> Máy Tính >  >> Lập trình >> MySQL

Làm thế nào để tìm kiếm từ cụ thể trong MySQL với RegExp?


Trước tiên, chúng ta hãy tạo một bảng -

mysql> create table DemoTable
   -> (
   -> Title varchar(255)
   -> );
Query OK, 0 rows affected (1.82 sec)

Chèn một số bản ghi vào bảng bằng lệnh chèn -

mysql> insert into DemoTable values('John is a good player');
Query OK, 1 row affected (0.26 sec)
mysql> insert into DemoTable values('No,John Doe is not a good player');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values('Yes,Adam Smith is play cricket match');
Query OK, 1 row affected (0.28 sec)
mysql> alter table DemoTable add fulltext(Title);
Query OK, 0 rows affected, 1 warning (10.60 sec)
Records: 0 Duplicates: 0 Warnings: 1

Hiển thị tất cả các bản ghi từ bảng bằng câu lệnh select -

mysql> select *from DemoTable;

Điều này sẽ tạo ra kết quả sau -

+--------------------------------------+
| Title                                |
+--------------------------------------+
| John is a good player                |
| No,John Doe is not a good player     |
| Yes,Adam Smith is play cricket match |
+--------------------------------------+
3 rows in set (0.00 sec)

Đây là truy vấn để tìm kiếm từ cụ thể trong MySQL -

mysql> select *from DemoTable
   -> where Title REGEXP '^.*John.*$';

Điều này sẽ tạo ra kết quả sau -

+----------------------------------+
| Title                            |
+----------------------------------+
| John is a good player            |
| No,John Doe is not a good player |
+----------------------------------+
2 rows in set (0.11 sec)