How to insert binary and varbinary datat in MySQL? Need an example
create table string_binary1 (binarydata binary(3));
insert into string_binary1 values ('a');
insert into string_binary1 values ('12343');
difference between above 2 statements, whether in both the cases data is converted to binary. If so then , it is displayed as BLOB
but if I uncheck , treat binary/varbinary as non binary charater string, then only data is displayed properly but not in binary value.