我创建了一个表
create table test_clob(
value clob
);
如果我尝试在此表上插入数据大小超过 4000 字节的数据,则会出现以下错误
SQL Error: ORA-01704: string literal too long
01704. 00000 - "string literal too long"
*Cause: The string literal is longer than 4000 characters.
*Action: Use a string literal of at most 4000 characters.
Longer values may only be entered using bind variables.
我不知道如何使用绑定变量...