RIGHT
RIGHT(string, int)
Parameters
string
int
Description
Returns the rightmost number of characters.
Examples
Get 3 last letters of Players' names:
SELECT RIGHT(NAME, 3) FROM Players;
Updated about 5 years ago