欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如果查询表employee中的字段名和字段的数据类型,还有约束条件。 博客分类: oracle SQL 

程序员文章站 2024-02-28 22:27:52
...

在命令中   desc   employee   就可以看到字段名与数据类型了.如果要查约束的话  
  select   TABLE_NAME,CONSTRAINT_NAME,SEARCH_CONDITION,STATUS  
  from   user_constraints   WHERE   TABLE_name=upper('&TABLE_Name');

 

 

 

some   table:  
   
  user_tab_columns  
  user_constraints  
  user_cons_columns   
 

 

 

查看主键:  
  select   constraint_name   from   user_constraints   where   constraint_type='P';  
   
  desc   ...不是SQL语句!是sqlplus特有的命令。  

相关标签: SQL