sql 查询结果的拼接、填充
一、拼接函数1、oracleselect concat(str1, str2) from table; // 只能有两个参数select str1 || str2 || ... || strn from table; // 任意数量参数2、mySqlselect concat(str1, str2, ..., strn) from table;二、填充函数select lpad(column, length, '*') from table; ...
原创
2020-12-08 11:22:07 ·
1661 阅读 ·
0 评论