I have a query as below:
Select price from myTable;
This returns value '22.50'
However, I need the format as 5.8 bytes
in my program.
That is my String value should be '00022.50000000'
and not '22.50'
Is there a way to achieve this directly in SQL ?