1. 程式人生 > >oracle 查詢所有表 表所有欄位

oracle 查詢所有表 表所有欄位

       列出當前DB中所有表:
       select table_name from user_all_tables

       列出表中所有欄位:
       select column_name from user_tab_columns where table_name='表名'