DATE (with time portion)
This page is part of MariaDB's Documentation.
The parent of this page is: Data Types for MariaDB Enterprise Server
Topics on this page:
Overview
See DATETIME.
EXAMPLES
SET sql_mode='oracle';
CREATE TABLE date_example (
example DATE
);
SHOW CREATE TABLE date_example\G
*************************** 1. row ***************************
Table: date_example
Create Table: CREATE TABLE "date_example" (
"example" datetime DEFAULT NULL
)