Created
October 16, 2013 08:46
-
-
Save sujinlee/7004660 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select 0.533 value | |
from dual ; | |
--result => .533 | |
--전체 자리수 7에 소수점 이하 3자리를 기준으로 | |
select rtrim(to_char(0.533, 'FM99990D999'), '.') value | |
from dual ; | |
--> result => 0.533 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment