AI智能
改变未来

Oracle 查询表信息(字段+备注)

  1. 获取表字段:  
  2.   
  3. select *   
  4. from user_tab_columns   
  5. where Table_Name=\’用户表\’   
  6. order by column_name  
  7.   
  8. 获取表注释:  
  9.   
  10. select *   
  11. from user_tab_comments   
  12. where Table_Name=\’用户表\’  
  13.   
  14. order by Table_Name  
  15.   
  16. 获取字段注释:  
  17.   
  18. select *   
  19. from user_col_comments   
  20. where Table_Name=\’用户表\’  
  21.   
  22. order by column_name  
  23.   
  24.   
  25. /* 获取表:*/  
  26.   
  27. select table_name from user_tables; //当前用户的表        
  28.   
  29. select table_name from all_tables; //所有用户的表    
  30.   
  31. select table_name from dba_tables; //包括系统表  
  32.   
  33. select table_name from dba_tables where owner=\’zfxfzb\’  
  34.   
  35. /*   

 

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Oracle 查询表信息(字段+备注)