描述:
将参数连接为字符串
语法:
concat(xi,…)
备注:
将参数连接成为字符串,且串拼入时不加引号。
参数:
xi |
任何可转成串的值,如果是序列则拆开后连接成字符串 |
返回值:
字符串
示例:
|
A |
|
1 |
=demo.query("select * from SCORES where SCORE>90") |
|
2 |
=A1.(SCORE) |
|
3 |
=A1.(SUBJECT) |
|
4 |
=concat(A2,A3) |
979691939797979691939797PEEnglishPEEnglishMathMathPEEnglishPEEnglishMathMath |
5 |
=concat(2,3,"a") |
23a |
相关概念: