VARCHAR2

Contents

  1. Overview
  2. EXAMPLES

Overview

See VARCHAR.

EXAMPLES

SET sql_mode='oracle';

CREATE TABLE varchar2_example (
  example VARCHAR2(32)
);
SHOW CREATE TABLE varchar2_example\G
*************************** 1. row ***************************
       Table: varchar2_example
Create Table: CREATE TABLE "varchar2_example" (
  "example" varchar(32) DEFAULT NULL
)

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.
Back to Top