I want to implement ROUNDUP() functionality which is available in EXCEL.
I tried round and Ceil functions in postgresql. But i am getting different values.
select round(1577.025,2); --Output: 1577.03
select ceil(1577.025);
select round(272.291,2); -- Output: 272.29
In excel, ROUNDUP(272.291,2) function i am getting Output as 272.30. I tried Ceil function but it is not accepting decimals.
Same functionality i am expecting in PostgreSql. Please help me on this.