Hi!
Actually that means that server did not recognize string value as floating point number. You can try to set data type to float and use explicit cast with real(), like
It is also possible that your locale expects floating point numbers to have , instead of .
Best regards,
Victor
Actually that means that server did not recognize string value as floating point number. You can try to set data type to float and use explicit cast with real(), like
Code Select
return real(res)
It is also possible that your locale expects floating point numbers to have , instead of .
Best regards,
Victor