TO_FLOAT32
Converts a value to FLOAT32 data type.
Analyze Syntax
func.to_float32( <expr> )
Analyze Examples
func.to_float32('1.2')
┌─────────────────────────┐
│ func.to_float32('1.2') │
├─────────────────────────┤
│ 1.2 │
└─────────────────────────┘
SQL Syntax
TO_FLOAT32( <expr> )
SQL Examples
SELECT TO_FLOAT32('1.2');
┌───────────────────┐
│ to_float32('1.2') │
├───────────────────┤
│ 1.2 │
└───────────────────┘
Last modified April 24, 2024 at 10:11 PM EST: updating conversion functions (833d7a5)