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