作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 ExecuteSQL 处理器从 MySql 数据库中获取计数。但是每次我这样做时都会出现以下错误。
错误:
org.apache.avro.SchemaParseException: Illegal character in: COUNT(*);
如果我更改查询以选择所有内容,它会正常工作,如下所示。
Select * from temp.test
最佳答案
保留计数的别名(*) 作为计数或 cnt ..等,
然后在执行 sql 处理器时使用别名为 count(*
) 的查询。
示例:-
Select count(*) count from temp.test
(或)
Select count(*) as count from temp.test
关于apache-nifi - NIFI QueryDatabaes org.apache.avro.SchemaParseException : Illegal character in: COUNT(*);,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49099755/
我正在尝试使用 ExecuteSQL 处理器从 MySql 数据库中获取计数。但是每次我这样做时都会出现以下错误。 错误: org.apache.avro.SchemaParseException:
我是一名优秀的程序员,十分优秀!