Comments for schemas and tables may be updated using SQL DDL statement COMMENT ON.Comments for columns are updated using: ALTER TABLE <table-name> ALTER COLUMN <column-name> COMMENT '<comment-text>'; The <column-name> for nested STRUCTS follows simp...