Get started
Load & manage data
Work with data
Administration
Reference & resources
Updated Sep 29, 2023
Send us feedback
right
Applies to: Databricks SQL Databricks Runtime
Returns the rightmost len characters from the string str.
len
str
right(str, len)
str: A STRING expression.
len: An integral number expression.
A STRING.
If len is less or equal than 0, an empty string.
> SELECT right('Spark SQL', 3); SQL
substr function
substring function
left function