在SELECT中使用MySQL附加通配符?
对于附加,请使用的概念concat()。语法如下-
select *from yourTableName where yourColumnName like concat('%',yourValue,'%');让我们创建一个表-
mysql> create table demo48 -> ( −> id int not null auto_increment primary key, −> name varchar(20) −> );
借助insert命令将一些记录插入表中-
mysql> insert into demo48(name) values('John Smith');
mysql> insert into demo48(name) values('John Doe');
mysql> insert into demo48(name) values('Adam Smith');
mysql> insert into demo48(name) values('David Miller');
mysql> insert into demo48(name) values('Chris Brown');使用select语句显示表中的记录-
mysql> select *from demo48;
这将产生以下输出-
+----+--------------+ | id | name | +----+--------------+ | 1 | John Smith | | 2 | John Doe | | 3 | Adam Smith | | 4 | David Miller | | 5 | Chris Brown | +----+--------------+ 5 rows in set (0.00 sec)
以下是在选择语句中附加通配符的查询-
mysql> select *from demo48 where name like concat('%','Smith','%');这将产生以下输出-
+----+------------+ | id | name | +----+------------+ | 1 | John Smith | | 3 | Adam Smith | +----+------------+ 2 rows in set (0.00 sec)
热门推荐
10 对学姐的简短祝福语
11 女儿升学宴祝福语简短
12 新年元旦祝福语大全简短
13 香薰的寓意祝福语简短
14 爷爷生日手册祝福语简短
15 牙医生日祝福语简短
16 薛之谦祝福语简短
17 送猫猫生日祝福语简短
18 祝女儿出嫁简短祝福语