如何在 MySQL 中查看列中的任何字符串是否包含给定字符串?
为此,需要使用 CONCAT() 与 LIKE 运算符。我们先创建一个表 –
mysql> create table DemoTable ( Name varchar(40) ); Query OK, 0 rows affected (0.56 sec)
使用 insert 命令向表中插入一些记录 –
mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.33 sec) mysql> insert into DemoTable values('Adam'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('Bob'); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable values('Johnson'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('David'); Query OK, 1 row affected (0.12 sec)
使用 select 语句显示表中的所有记录 –
mysql> select *from DemoTable;
这将会产生以下输出 –
+---------+ | Name | +---------+ | John | | Adam | | Bob | | Johnson | | David | +---------+ 5 rows in set (0.00 sec)
以下查询用于查看列中的任何字符串是否包含给定字符串 –
mysql> select *from DemoTable where Name like "%Joh%" OR "Joh" LIKE CONCAT("%", Name, "%");
这将会产生以下输出 –
+---------+ | Name | +---------+ | John | | Johnson | +---------+ 2 rows in set (0.00 sec)
广告