Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Need help on Round() function to skip last 2 values

srikanth bDec 17 2022

CREATE TABLE TEST(CURR)AS
(
SELECT 123.163612 FROM DUAL UNION ALL
SELECT 1237.1728788 FROM DUAL UNION ALL
SELECT 2828.2282811 FROM DUAL UNION ALL
SELECT 282.1886 FROM DUAL
)
Expected result:
Output:
123.1636
1237.17288
2828.22828
282.19

When I tried the round() got result below
SELECT ROUND(CURR,4) FROM test;
ROUND(CURR,4)
123.1636
1237.1729
2828.2283
282.1886

This post has been answered by Frank Kulash on Dec 17 2022
Jump to Answer

Comments

Processing

Post Details

Added on Dec 17 2022
12 comments
189 views