Forum Moderators: coopster
Mysql returns all values as strings, so if you want them treated as something else, you must cast them.
If you were doing math, though, there is no difference between 1.1 and 1.10, so I assume that this is a problem for output. In that case, you could use
sprintf()
Tom