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

Loại trường cơ sở dữ liệu MySQL cho truy vấn tìm kiếm?


Cú pháp sau -

select *from yourTableName where REGEXP_INSTR(yourColumnName,yourSearchValue);

Để hiểu cú pháp trên, trước tiên chúng ta hãy tạo một bảng -

mysql> create table demo64
−> (
−> id int not null auto_increment primary key,
−> name varchar(40)
−> );
Query OK, 0 rows affected (3.06 sec)

Chèn một số bản ghi vào bảng với sự trợ giúp của lệnh insert -

mysql> insert into demo64(name) values('John Smith');
Query OK, 1 row affected (0.21 sec)

mysql> insert into demo64(name) values('John Doe');
Query OK, 1 row affected (0.15 sec)

mysql> insert into demo64(name) values('Chris Brown');
Query OK, 1 row affected (0.08 sec)

mysql> insert into demo64(name) values('David Miller');
Query OK, 1 row affected (0.20 sec)

mysql> insert into demo64(name) values('Carol Taylor');
Query OK, 1 row affected (0.10 sec)

Hiển thị các bản ghi từ bảng bằng cách sử dụng câu lệnh select -

mysql> select *from demo64;

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

+----+--------------+
| id | name         |
+----+--------------+
|  1 | John Smith   |
|  2 | John Doe     |
|  3 | Chris Brown  |
|  4 | David Miller |
|  5 | Carol Taylor |
+----+--------------+
5 rows in set (0.00 sec)

Sau đây là truy vấn cho truy vấn tìm kiếm loại trường -

mysql> select *from demo64 where REGEXP_INSTR(name,'John');

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

+----+------------+
| id | name       |
+----+------------+
|  1 | John Smith |
|  2 | John Doe   |
+----+------------+
2 rows in set (0.00 sec)