RPAD_ORACLE()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
EXAMPLES
SELECT RPAD_ORACLE('Maria',7,'DB');
+-----------------------------+
| RPAD_ORACLE('Maria',7,'DB') |
+-----------------------------+
| MariaDB |
+-----------------------------+
SELECT RPAD_ORACLE('Maria',6,'DB');
+-----------------------------+
| RPAD_ORACLE('Maria',6,'DB') |
+-----------------------------+
| MariaD |
+-----------------------------+
SET sql_mode=CONCAT(@@sql_mode, ',ORACLE');
SELECT RPAD('Maria',10,'DB');
+-----------------------+
| RPAD('Maria',10,'DB') |
+-----------------------+
| MariaDBDBD |
+-----------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.