我想创建一个插入脚本,它只用于将一条记录插入一个表中.
它有5列,其中一列是CLOB类型.
每当我尝试,它说无法插入字符串是如此之久.大于4000.
我需要一个带有clob的insert语句作为一个字段.
INSERT INTO tbltablename
(id,
NAME,
description,
accountnumber,
fathername)
VALUES (1,
N'Name',
clob'some very long string here, greater than 4000 characters',
23,
'John') ;
Run Code Online (Sandbox Code Playgroud) oracle ×1