How might I convert a varchar into a float in MySQL while executing a query?
varchar
float
You can use this simple trick 0 + column_name to convert it to float.
0 + column_name
select 0 + column_name from table;