How can I store the following data structure:
byte[] number = new byte[1000];
in bytea column in PostgreSQL with
INSERT INTO blobT command?
CREATE TABLE blobT (
blob bytea
);
What is the equivalence of bytea in MySQL and Microsoft SQL?