Answers for "How do we represent comments in oracle?"

SQL
2

oracle comment on view

COMMENT ON TABLE view_name IS 'A view comment';
COMMENT ON COLUMN view_name.MY_COLUMN IS 'A column comment';

SELECT * FROM ALL_TAB_COMMENTS WHERE TABLE_NAME = 'VIEW_NAME';
SELECT * FROM ALL_COL_COMMENTS WHERE TABLE_NAME = 'VIEW_NAME';
Posted by: Guest on June-15-2021

Code answers related to "How do we represent comments in oracle?"

Code answers related to "SQL"

Browse Popular Code Answers by Language