LONGBLOB
Very large binary object. A LONGBLOB column can store up to 4GB of binary data.
Syntax
LONGBLOBDescription
Oracle Mode
Examples
CREATE TABLE longblob_example (
description VARCHAR(20),
example LONGBLOB
) DEFAULT CHARSET=latin1; -- One byte per char makes the examples clearerINSERT INTO longblob_example VALUES
('Normal foo', 'foo'),
('Trailing spaces foo', 'foo '),
('NULLed', NULL),
('Empty', ''),
('Maximum', RPAD('', 4294967295, CHAR(7)));Data Too Long
See Also
Last updated
Was this helpful?

