摘要:
1、concat() 1.1、concat(str1, str2, ...) user表 id name 01 test 运行:select concat(id, ',', name) as info from user 结果 info 01,test 1.2、concat_ws(separator 阅读全文
摘要:
scala语法 函数 (x: Int) => x + 1 方法1 def add(x: Int, y: Int): Int = x + y 运行 println(add(1, 2))#3 方法2 def addThenMultiply(x: Int, y: Int)(multiplier: Int) 阅读全文