TO_UINT8

Converts a value to UINT8 data type.

Analyze Syntax

func.to_uint8( <expr> )

Analyze Examples

func.to_uint8('123')

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

SQL Syntax

TO_UINT8( <expr> )

SQL Examples

SELECT TO_UINT8('123');

┌─────────────────┐
 to_uint8('123') 
├─────────────────┤
             123 
└─────────────────┘
Last modified April 24, 2024 at 10:11 PM EST: updating conversion functions (833d7a5)