TO_FLOAT32 (Lakehouse v1)
Converts a value to FLOAT32 data type.
Analyze Syntax
Section titled “Analyze Syntax”func.to_float32( <expr> )Analyze Examples
Section titled “Analyze Examples”func.to_float32('1.2')
┌─────────────────────────┐│ func.to_float32('1.2') │├─────────────────────────┤│ 1.2 │└─────────────────────────┘SQL Syntax
Section titled “SQL Syntax”TO_FLOAT32( <expr> )SQL Examples
Section titled “SQL Examples”SELECT TO_FLOAT32('1.2');
┌───────────────────┐│ to_float32('1.2') │├───────────────────┤│ 1.2 │└───────────────────┘