I have in Cassandra a column that has the format TEXT
, although in truth what it stores are numbers (for example 12.23
) and I need to do a SELECT
in CQL to compare if it is greater than a certain number.
For example:
SELECT temperatura from db.estaciones WHERE temperatura > 23.31
The problem is that I do not know how to make you compare a TEXT
with a FLOAT
.