Spark Sql 函式使用

weixin_34146805發表於2017-03-01

round -  保留資料精度 

如 round(col("col1"),0) 對應數值為 21.23 -> 21.0 ;21.73 -> 22.0

如 round(col("col1"),1) 對應數值為 21.23 -> 21.2

如 round(col("col1"),-1) 對應數值為 21.23 -> 20.0

相關文章