Clickhouse 查询时报错 No operation greater between Decimal
No operation greater between Decimal
Clickhouse 查询时报错
原因是xxx字段是Decimal类型,只支持int型条件,不支持小数形式的条件 如:
select * from table01 where xxx>0; 或
select * from table01 where xxx>1 ; 正常
select * from table01 where xxx>0.1; 就会报错
解决方案 可以吧xxx装换为float
1.把表字段类型换
原创
2022-01-27 16:37:42 ·
1395 阅读 ·
0 评论