tinyint function

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Casts expr to TINYINT. This function is a synonym for CAST(expr AS TINYINT). See cast function for details.

Syntax

tinyint(expr)

Arguments

  • expr: Any expression which is castable to TINYINT.

Returns

The result is TINYINT.

Examples

> SELECT tinyint('12');
 12
> SELECT tinyint(5.4);
 5