you can use COMMENT ON to set or update the comment on an view-- View-level comment (use TABLE for views)COMMENT ON TABLE catalog.schema.my_view IS 'View for user info';-- Column-level comment on a viewCOMMENT ON COLUMN catalog.schema.my_view.name IS...
you can use COMMENT ON to set or update the comment on an view-- View-level comment (use TABLE for views)COMMENT ON TABLE catalog.schema.my_view IS 'View for user info';-- Column-level comment on a viewCOMMENT ON COLUMN catalog.schema.my_view.name IS...