数値の小数部のみを取得する
select Val,Mod(Val,1) as 小数部のみ from (select RowNum/7 as Val from all_catalog where RowNum <= 10);
Mod関数を使って、 数値の小数部のみを取得できます