function toFloat(expression)

toFloat() converts the argument to a float. A string is parsed as if it was an floating point number. If the parsing fails, NULL will be returned. An integer will be cast to a floating point number.

Arguments:
expression: An expression that returns anything

Example Query:
    RETURN toFloat("11.5"), toFloat("not a number")