SQLPlus获取oracle表操作SQL

--获取当前库中有那些表以及表的注释
select * from user_tab_comments;

--获取当前表字段以及注释
select * from user_col_comments where table_name='MID_TMALL_EO_ORDER_ITEM';

 

--例如:
select * from user_tab_comments;
select * from user_col_comments where table_name=upper('third_party_merchant')

posted @ 2017-02-10 14:45  21heshang  阅读(295)  评论(0编辑  收藏  举报