不确定如何解决此错误
对本地函数“ DATE_FORMAT”的调用中参数计数错误
代码:
// For input in the form of List[List[String]]:
val input: List[List[String]] = List(
List("PRECIOUS", "LETS"),
List("GANDALF"),
List("AYYY")
)
val result: List[List[String]] = input.tail.foldLeft(input.head.map(List(_))) {
(res, nextList) => res.flatMap(sentence => nextList.map(word => sentence :+ word))
}
答案 0 :(得分:1)
您需要将日期列添加到date_format
,例如DATE_FORMAT(contracts.date, '%Y-%m')
答案 1 :(得分:0)
DATE_FORMAT()函数格式化由格式掩码指定的日期。
语法:DATE_FORMAT(date, format_mask)
因此,在这种情况下,您指定需要用所需格式掩盖的日期。即:'%Y-%m'