MySQL RPAD()関数
例
文字列を「ABC」で右パッドし、全長を20にします。
SELECT RPAD("SQL Tutorial",
20, "ABC");
定義と使用法
RPAD()関数は、文字列を特定の長さまで別の文字列で右パディングします。
注:LPAD() 関数も確認してください。
構文
RPAD(string,
length, rpad_string)
パラメータ値
Parameter | Description |
---|---|
string | Required. The original string. If the length of the original string is larger than the length parameter, this function removes the overfloating characters from string |
length | Required. The length of the string after it has been right-padded |
rpad_string | Required. The string to right-pad to string |
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
「CustomerName」のテキストを「ABC」で右に埋めて、全長を30にします。
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;