首页 > 数据库 > MySQL > 正文

mysql 修改sql_mode 实现字符串管道‘||’连接

2024-07-24 13:00:14
字体:
来源:转载
供稿:网友
MySQL> show variables like '%sql_mode%';+---------------+--------------------------------------------+| Variable_name | Value                                      |+---------------+--------------------------------------------+| sql_mode      | STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION |+---------------+--------------------------------------------+1 row in set (0.00 sec)mysql> select 'a'||'a';+----------+| 'a'||'a' |+----------+|        0 |+----------+1 row in set, 2 warnings (0.00 sec)

在Oracle 缺省支持 通过 ‘ || ’ 来实现字符串拼接,但在mysql 缺省不支持。需要调整mysql 的sql_mode 模式:pipes_as_concat 来实现oracle 的一些功能

mysql> set session sql_mode='STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,pipes_as_concat';Query OK, 0 rows affected (0.00 sec)mysql> select 'a'||'a';+----------+| 'a'||'a' |+----------+| aa       |+----------+1 row in set (0.00 sec)mysql> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表