以下表为例:
1、CONCAT函数
(1)功能
将多个字符串连接成一个字符串;
(2)语法
CONCAT(str1,str2,…)
(3)示例
语句:
SELECT
CONCAT(id, query_condition, hotel_id, try_times)
FROM
test_warehouse_db.query_task;
结果:
(4)注意事项
返回结果为连接参数产生的字符串,如果有任何一个参数为null,则返回值为null
2、CONCAT_WS函数
(1)功能
concat_ws即concat with separator。和concat()一样,用于将多个字符串连接成一个字符串,但是可以一次性指定分隔符