# How to comment oracle database #
---------------------------------------------------------------------------------------------------------
COMMENT ON TABLE your_table_name
IS 'This is a multi-line comment for your table.
It provides additional information about the table structure and purpose.';
IS 'This is a multi-line comment for your table.
It provides additional information about the table structure and purpose.';
SELECT table_name, comments
FROM all_tab_comments
WHERE table_name = 'your_table_name';
No comments:
Post a Comment