I need to remove all trailing zeros without using an interger field in the DB.
Example: 4.50000
I am inserting into a varchar field and this field preserves the original number. I need to strip these trailing zeros before insert or update without using number_format(), floor(), ceil() or round().
Thanx in advance.