在SQL中注释表时的语法(Oracle)

时间:2018-07-05 13:16:12

标签: sql oracle ddl

我想用SQL(Oracle)注释一个表并将URL添加到此注释中:

comment on table A is 'https://stackoverflow.com/';

但是它返回错误:未知命令。

正确的语法是什么,如何转义特殊字符?

1 个答案:

答案 0 :(得分:0)

简单

comment on table "HR"."A"  is 'https://stackoverflow.com/#'

由于您标记了SQL Developer,因此就是在SQL Developer中。

enter image description here

现在出现在这里:

enter image description here

您可以找到Docs for that here.