TO_UINT64

Learn how to use the TO_UINT64 conversion function in PlaidCloud Lakehouse. Converts a value to UINT64 data type. Includes syntax and examples.

Converts a value to UINT64 data type.

Analyze Syntax

func.to_uint64( <expr> )

Analyze Examples

func.to_uint64('123')

┌───────────────────────┐
 func.to_uint64('123') 
├───────────────────────┤
                   123 
└───────────────────────┘

SQL Syntax

TO_UINT64( <expr> )

SQL Examples

SELECT TO_UINT64('123');

┌──────────────────┐
 to_uint64('123') 
├──────────────────┤
              123 
└──────────────────┘