我想知道我的SQL插入代码是否正确。
这是我的桌子:
-- Create table
Create table FNS_CHAMP_DEV
(
IDAUTO Integer not null generated always as identity ( start with
0, increment by 1, no cache) primary key,
BB_COL BLOB,
CB_COL CLOB
);
下面的语法SQL是否正确,以便在BLOB Column中插入PDF文件?
-SQL插入请求:
SELECT IDAUTO AS Last_ID from final table (Insert into FNS_CHAMP_DEV (
BB_COL ) Values(blob('C:\DOC_TECHNIQUE_WD\TEC_VISUAL_STUDIO\WPF_VISUAL_STUDIO.pdf')));
谢谢