标签: oracle plsql
是否有任何Oracle db预定义函数将小数转换为分数,反之亦然?
以例如:
如果我将它传递给0.9值,那么它应该给出90/100。或者我将90/100发送到该功能,我会回到0.9。
答案 0 :(得分:0)
你可以这样做......
select (0.9 * 100 || '/100') as YourColumn from dual; Select (yourcolumn * 100 || '/100') as col1 from yourtable;