How do I get only the numbers after the decimal?
Example: 2.938 = 938
2.938
938
I had the same problem and solved with '%' operator:
select 12.54 % 1;