Udskrivbare data kan indsættes ved hjælp af anførselstegn. Data, der ikke kan udskrives, kan indsættes ved hjælp af hexadecimale værdier. Dvs.:
INSERT INTO Table(VarBinaryColumn) VALUES('Printable data') -- Will be stored as binary representation using the charset of the operating system
INSERT INTO Table(VarBinaryColumn) VALUES(0x12345) -- Non-printable binary data