I find myself in the following picture situation
I need via sql to compare the value of the property with the minimum and maximum filter value but due to the semicolons I do not get results. How can I fix this?
You can use MySQL Replace
SELECT <CAMPOS> FROM <TABELA>
WHERE CAST(REPLACE(REPLACE(CAMPO, '.', ''),',','.') as DECIMAL(10,2))
BETWEEN MINIMO AND MAXIMO