Skip to Content

mvSQL Database Function - RIGHT()

Summary

Returns a given number of characters from the right side of a supplied text string.

Syntax

RIGHT(<string>, <length>)

Parameters

string

The string to evaluate.

length

The number of characters from the right side to return.

Returns

A given number of characters from the right side of a supplied text string.

Examples

RIGHT('ABCDEF', 3)

Returns

DEF