Skip to content

Instantly share code, notes, and snippets.

@sujinlee
Created October 16, 2013 08:46
Show Gist options
  • Save sujinlee/7004660 to your computer and use it in GitHub Desktop.
Save sujinlee/7004660 to your computer and use it in GitHub Desktop.
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