mariadb_schema
This system database contains crucial metadata about the server, including information schema, statistics, and optimizer hints, for internal operations.
CREATE TABLE t1 (d mariadb_schema.DATE);SET sql_mode=DEFAULT;
CREATE OR REPLACE TABLE t1 (
d DATE
);
SET SQL_mode=ORACLE;
SHOW CREATE TABLE t1;
+-------+--------------------------------------------------------------+
| Table | Create Table |
+-------+--------------------------------------------------------------+
| t1 | CREATE TABLE "t1" (
"d" mariadb_schema.DATE DEFAULT NULL
) |
+-------+--------------------------------------------------------------+History
Last updated
Was this helpful?

