mysql 之 concat()、group_concat() 函数
concat() 函数
字符串连接函数
其中可以放多个字段,将字段拼接起来
SELECT term_prin,term_repay_prin,term_reduce_prin,CONCAT(term_prin,term_repay_prin,term_reduce_prin) as '当前逾期本金' FROM acc_repay.repayment_plan WHERE due_bill_no ='YX-202101101214472620066' AND term_status = 'OVERDUE';
结果如下:
group_concat() 函数
这个函数在hive中使用不了