我有一张桌子
create table pictures(
pic_ID int,
picture blob,
primary key (pic_ID)
);
Run Code Online (Sandbox Code Playgroud)
我使用INSERT INTO pictures VALUES (1, load_file('/home/hai/Pictures/icon.jpeg'));
然后select * from pictures;显示这个
为什么我的图片列中有NULL?
sql ×1