MySQL 中查询字符少于 X 个的查询结果?
可以使用 CHAR_LENGTH() 以及 WHERE 子句。我们首先创建一个表 -
mysql> create table DemoTable -> ( -> FullName varchar(50) -> ); Query OK, 0 rows affected (1.75 sec)
使用插入命令在表中插入一些记录 -
mysql> insert into DemoTable values('Chris Brown'); Query OK, 1 row affected (0.40 sec) mysql> insert into DemoTable values('David Miller'); Query OK, 1 row affected (0.91 sec) mysql> insert into DemoTable values('Robert Miller'); Query OK, 1 row affected (0.26 sec) mysql> insert into DemoTable values('John Smith'); Query OK, 1 row affected (0.89 sec)
使用选择语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+---------------+ | FullName | +---------------+ | Chris Brown | | David Miller | | Robert Miller | | John Smith | +---------------+ 4 rows in set (0.00 sec)
以下是获取 MySQL 中字符少于 X 个的记录的查询 -
mysql> select *from DemoTable where char_length(FullName) < 12;
这将产生以下输出 -
+-------------+ | FullName | +-------------+ | Chris Brown | | John Smith | +-------------+ 2 rows in set (0.00 sec)
广告