CHARACTER
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 CHAR.
EXAMPLES
CREATE TABLE character_example (
example CHARACTER
);
SHOW CREATE TABLE character_example\G
*************************** 1. row ***************************
Table: character_example
Create Table: CREATE TABLE `character_example` (
`example` char(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1