oracle存储过程中,动态创建表后,需要给动态表里的字段添加描述,但是报错,无效字符!

2024-11-03 20:52:54
推荐回答(2个)
回答1:

v_sql := 'comment on column xxxx.id is '''主键'''';
试下这个

回答2:

v_sql := 'comment on column xxxx.id is ''主键''';
v_sql := v_sql || 'comment on column xxxx.times is ''时间''';