Answers for "How do I insert a blob in SQL?"

SQL
0

How do I insert a blob in SQL?

create table a(id integer, item blob);
insert into a values(3, FILE_READ('file.dat'));
Posted by: Guest on November-06-2020

Code answers related to "How do I insert a blob in SQL?"

Code answers related to "SQL"

Browse Popular Code Answers by Language