COMMENT ON COLUMN shipping.notes
IS ’Special packing or shipping instructions’;COMMENT ON COLUMN shipping.notes IS ’ ’;—————————————————————————————————
同是天涯沦落人,相逢何必曾相识。

解决方案 »

  1.   

    You can view the comments on a particular table or column by querying the data
    dictionary views USER_TAB_COMMENTS, DBA_TAB_COMMENTS, or ALL_TAB_
    COMMENTS or USER_COL_COMMENTS, DBA_COL_COMMENTS, or ALL_COL_
    COMMENTS.—————————————————————————————————
    同是天涯沦落人,相逢何必曾相识。
      

  2.   

    那么对于注释中自定义参数部分呢,有没有什么实质性的用途和意义呢?
    我在执行一个建表*.sql时,碰到这部分参数,输入值以后便报错,结果所有的表建立不成功。
      

  3.   

    You can add comments to a table or column by using the COMMENT statement.Comments can be viewed through the data dictionary views.
    ALL_COL_COMMENTS
    USER_COL_COMMENTS
    ALL_TAB_COMMENTS
    USER_TAB_COMMENTS