blob: 33d93db0cccac186c498d159ea0adde677be2ac2 [file] [log] [blame]
drop table MYBLOB;
create table MYBLOB (
ID int primary key,
NAME VARCHAR(100),
BLB BLOB(255),
BYTEBLB BLOB(255),
BYTEBLB2 BLOB(255)
) ENGINE=InnoDB;
commit;
insert into MYBLOB values (
1,
'AAA',
'4444444444',
'7777777777',
'9999999999');
commit;