This is a read-only copy of the MariaDB Knowledgebase generated on 2024-11-14. For the latest, interactive version please visit https://mariadb.com/kb/.

RPAD

Sintassi

RPAD(str, len, padstr)

Spiegazione

Restituisce la stringa str, dopo aver inserito a destra la stringa padstr fino a raggiungere una lunghezza di len caratteri. Se str è più lunga di len, il valore restituito è abbreviato a len caratteri.

Esempi

MariaDB [(none)]> SELECT RPAD('hello',10,'.');
+----------------------+
| RPAD('hello',10,'.') |
+----------------------+
| hello.....           |
+----------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT RPAD('hello',2,'.');
+---------------------+
| RPAD('hello',2,'.') |
+---------------------+
| he                  |
+---------------------+
1 row in set (0.00 sec)

Vedi anche

  • lpad() ; Restituisce la stringa, allungata a sinistra con un'altra stringa della lunghezza specificata
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.