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

在命令中   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特有的命令。  

你可能感兴趣的:(oracle,SQL)