COMMENT

Defines or change the comment of an object.

Synopsis

  1. COMMENT ON
  2. { TABLE <object_name> |
  3. COLUMN <table_name.column_name> |
  4. AGGREGATE <agg_name> (<agg_type> [, ...]) |
  5. CAST (<sourcetype> AS <targettype>) |
  6. CONSTRAINT <constraint_name> ON <table_name> |
  7. CONVERSION <object_name> |
  8. DATABASE <object_name> |
  9. DOMAIN <object_name> |
  10. FILESPACE <object_name> |
  11. FUNCTION <func_name> ([[<argmode>] [<argname>] <argtype> [, ...]]) |
  12. INDEX <object_name> |
  13. LARGE OBJECT <large_object_oid> |
  14. OPERATOR <op> (<leftoperand_type>, <rightoperand_type>) |
  15. OPERATOR CLASS <object_name> USING <index_method> |
  16. [PROCEDURAL] LANGUAGE <object_name> |
  17. RESOURCE QUEUE <object_name> |
  18. ROLE <object_name> |
  19. RULE <rule_name> ON <table_name> |
  20. SCHEMA <object_name> |
  21. SEQUENCE <object_name> |
  22. TABLESPACE <object_name> |
  23. TRIGGER <trigger_name> ON <table_name> |
  24. TYPE <object_name> |
  25. VIEW <object_name> }
  26. IS '<text>'

Description

COMMENT stores a comment about a database object. To modify a comment, issue a new COMMENT command for the same object. Only one comment string is stored for each object. To remove a comment, write NULL in place of the text string. Comments are automatically dropped when the object is dropped.

Comments can be easily retrieved with the psql meta-commands \dd, \d+, and \l+. Other user interfaces to retrieve comments can be built atop the same built-in functions that psql uses, namely obj_description, col_description, and shobj_description.

Parameters

object_name

table_name.column_name

agg_name

constraint_name

func_name

op

rule_name

trigger_name

The name of the object to be commented. Names of tables, aggregates, domains, functions, indexes, operators, operator classes, sequences, types, and views may be schema-qualified.

Note: Greenplum Database does not support triggers.

agg_type

An input data type on which the aggregate function operates. To reference a zero-argument aggregate function, write * in place of the list of input data types.

sourcetype

The name of the source data type of the cast.

targettype

The name of the target data type of the cast.

argmode

The mode of a function argument: either IN, OUT, INOUT, or VARIADIC. If omitted, the default is IN. Note that COMMENT ON FUNCTION does not actually pay any attention to OUT arguments, since only the input arguments are needed to determine the function’s identity. So it is sufficient to list the IN, INOUT, and VARIADIC arguments.

argname

The name of a function argument. Note that COMMENT ON FUNCTION does not actually pay any attention to argument names, since only the argument data types are needed to determine the function’s identity.

argtype

The data type(s) of the function’s arguments (optionally schema-qualified), if any.

large_object_oid

The OID of the large object.

PROCEDURAL

This is a noise word.

text

The new comment, written as a string literal; or NULL to drop the comment.

Notes

There is presently no security mechanism for comments: any user connected to a database can see all the comments for objects in that database (although only superusers can change comments for objects that they do not own). For shared objects such as databases, roles, and tablespaces comments are stored globally and any user connected to any database can see all the comments for shared objects. Therefore, do not put security-critical information in comments.

Examples

Attach a comment to the table mytable:

  1. COMMENT ON TABLE mytable IS 'This is my table.';

Remove it again:

  1. COMMENT ON TABLE mytable IS NULL;

Compatibility

There is no COMMENT statement in the SQL standard.

Parent topic: SQL Command Reference