TO_INT32
Learn how to use the TO_INT32 conversion function in PlaidCloud Lakehouse. Converts a value to INT32 data type. Includes syntax and examples.
Converts a value to INT32 data type.
Analyze Syntax
func.to_int32( <expr> )
Analyze Examples
func.to_int32('123')
┌──────────────────────┐
│ func.to_int32('123') │
├──────────────────────┤
│ 123 │
└──────────────────────┘
SQL Syntax
TO_INT32( <expr> )
SQL Examples
SELECT TO_INT32('123');
┌─────────────────┐
│ to_int32('123') │
├─────────────────┤
│ 123 │
└─────────────────┘