返回一个子字符串,该字符串是字符串的最右侧部分,具有指定的最大长度。

参数:

  1. 人物表达。字符表达式可以是任何可以隐式转换为 varcharnvarchar 的数据类型,但 textntext 除外
  2. 最长长度。0 到 bigint 最大值之间的整数(9,223,372,036,854,775,807)。如果 max length 参数为负,则会引发错误。
SELECT RIGHT('This is my string', 6) -- returns 'string'

如果最大长度大于字符串中的字符数,则返回 entier 字符串。

SELECT RIGHT('This is my string', 50) -- returns 'This is my string'