I have declared one field in content type by name "Amount" and its type as "Float" I am trying to save 25.00000 value into amout field but it is removing decilaml point and all the zeros. Is there any way to store float value as it is.
After saving content type amount value is -
{amount => 25}
Expected Output should be -
{amount => 25.0000}
Since you are storing it as number, not as the string why do you care how it is stored in DB? Do your formatting when you use the number retrieved from database:
http://php.net/manual/en/function.number-format.php