有效使用 MySQL concat() 和 lower()
contact() 方法用于连接。同时,lower() 用于将大小写更改为小写。比如,我们创建一个表格。
创建表格的查询如下
mysql> create table concatAndLowerDemo -> ( -> FirstValue varchar(10), -> SecondValue varchar(10), -> ThirdValue varchar(10), -> FourthValue varchar(10) -> ); Query OK, 0 rows affected (0.55 sec)
现在,你可以使用 insert 命令在表格中插入一些记录。
查询如下
mysql> insert into concatAndLowerDemo values('John','12345','Java','MySQL'); Query OK, 1 row affected (0.21 sec) mysql> insert into concatAndLowerDemo values('Hi','12345','98764','MongoDB'); Query OK, 1 row affected (0.24 sec) mysql> insert into concatAndLowerDemo values('9485','746464','903940','cpp'); Query OK, 1 row affected (0.15 sec)
使用 select 语句从表格中显示所有记录。
查询如下
mysql> select *from concatAndLowerDemo;
以下是输出
+------------+-------------+------------+-------------+ | FirstValue | SecondValue | ThirdValue | FourthValue | +------------+-------------+------------+-------------+ | John | 12345 | Java | MySQL | | Hi | 12345 | 98764 | MongoDB | | 9485 | 746464 | 903940 | cpp | +------------+-------------+------------+-------------+ 3 rows in set (0.00 sec)
这里是在同一个查询中使用 concat() 和 lower() 的查询
mysql> select lower(concat(FirstValue,SecondValue,ThirdValue,FourthValue)) AS lowerDemo from concatAndLowerDemo;
以下是输出
+---------------------+ | lowerDemo | +---------------------+ | john12345javamysql | | hi1234598764mongodb | | 9485746464903940cpp | +---------------------+ 3 rows in set (0.00 sec)
广告