标签:-- sel 多个 一个 cas html ons start com
字符串 s1,s2 等多个字符串合并为一个字符串。
SELECT CONCAT("str1", "str2") AS str;
+----------+
| str |
+----------+
| str1str2 |
+----------+
同 CONCAT(s1,s2,...) 函数,但是每个字符串之间要加上 x,x 可以是分隔符。
SELECT CONCAT_WS("-", "str1", "str2", "str3")AS str;
+----------------+
| str |
+----------------+
| str1-str2-str3 |
+----------------+
REVERSE(s)
SELECT REVERSE(‘ABCDE‘);
+------------------+
| REVERSE(‘ABCDE‘) |
+------------------+
| EDCBA |
+------------------+
从字符串 s 的 start 位置截取长度为 length 的子字符串
SELECT SUBSTR("asdfgh", 2, 3) AS new_str;
+---------+
| new_str |
+---------+
| sdf |
+---------+
从字符串 s 的 start 位置截取长度为 length 的子字符串
SELECT SUBSTRING("asdfgh", 2, 3) AS new_str;
+---------+
| new_str |
+---------+
| sdf |
+---------+
将字符串转换为大写。
mysql> SELECT UCASE("asdfgh");
+-----------------+
| UCASE("asdfgh") |
+-----------------+
| ASDFGH |
+-----------------+
将字符串转换为大写。
mysql> SELECT UPPER("asdfgh");
+-----------------+
| UPPER("asdfgh") |
+-----------------+
| ASDFGH |
+-----------------+
···
[参考](https://www.runoob.com/mysql/mysql-functions.html)
标签:-- sel 多个 一个 cas html ons start com
原文地址:https://www.cnblogs.com/qmzbe/p/14711543.html