RAW
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
EXAMPLES
SET sql_mode='oracle';
CREATE TABLE raw_example (
example RAW(32)
);
SHOW CREATE TABLE raw_example\G
*************************** 1. row ***************************
Table: raw_example
Create Table: CREATE TABLE "raw_example" (
"example" varbinary(32) DEFAULT NULL
)