Clickhouse
wuyuanshun
这个作者很懒,什么都没留下…
展开
-
ClickHouse exception, code: 41 ClickHouse修改表字段类型后查询异常 遇到的坑
ClickHouse exception, code: 41 ClickHouse修改表字段类型后查询异常 遇到的坑原创 2022-03-09 14:31:46 · 3441 阅读 · 0 评论 -
Clickhouse 查询时报错 No operation greater between Decimal
No operation greater between DecimalClickhouse 查询时报错原因是xxx字段是Decimal类型,只支持int型条件,不支持小数形式的条件 如:select * from table01 where xxx>0; 或 select * from table01 where xxx>1 ; 正常select * from table01 where xxx>0.1; 就会报错解决方案 可以吧xxx装换为float1.把表字段类型换原创 2022-01-27 16:37:42 · 1395 阅读 · 0 评论