empty_clob
最近更新时间: 2025-02-18 16:02:00
初始化CLOB字段。
postgres=# select empty_clob();
empty_clob
------------
(1 row)
postgres=# create table t1 (f1 int,f2 clob);
CREATE TABLE
postgres=# insert into t1(f1,f2) values (1,empty_clob());
INSERT 0 1
postgres=#