LPAD_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 LPAD_ORACLE('DB',1,'Maria');
+-----------------------------+
| LPAD_ORACLE('DB',1,'Maria') |
+-----------------------------+
| D |
+-----------------------------+
SET sql_mode=CONCAT(@@sql_mode, ',ORACLE');
SELECT LPAD('DB',7,'Maria');
+----------------------+
| LPAD('DB',7,'Maria') |
+----------------------+
| MariaDB |
+----------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.