在单个 MySQL 查询中实现 SELECT LIKE 和 CHAR_LENGTH()
mysqlmysqli database
首先我们创建一个表 −
mysql> create table DemoTable -> ( -> Name varchar(20) -> ); Query OK, 0 rows affected (0.49 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values('Chris Brown'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values('Adam Smith'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('John Smith'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('Carol Smith'); Query OK, 1 row affected (0.13 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable;
这将产生以下输出 −
+-------------+ | Name | +-------------+ | Chris Brown | | Adam Smith | | John Smith | | Carol Smith | +-------------+ 4 rows in set (0.00 sec)
以下是实现 SELECT LIKE 和 CHAR_LENGTH 的查询 −
mysql> select * from DemoTable -> where Name LIKE '%Smith%' -> and char_length(Name) < 11;
这将产生以下输出 −
+------------+ | Name | +------------+ | Adam Smith | | John Smith | +------------+ 2 rows in set (0.00 sec)