Floating point values

If you want to store floating point values in a table, you have to use the data type str (String).
Also, if you want to use floating point values in SQL Statements, you have to insert them between single quotes(' ') or double quotes (" ")" ".

Using str for floating point values does not hinder ORDER BY from working with floating point values.
For example, '50.1' is greater then '9.99999', event if '9.99999' comes first in the alphabet.