RAW
In Oracle mode, RAW is a variable-length binary data type synonymous with VARBINARY.
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
)Last updated
Was this helpful?

