返回一個子字串,該字串是字串的最右側部分,具有指定的最大長度。

引數:

  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'