当前位置:网站首页>Possible SQL for Oracle table lookup information

Possible SQL for Oracle table lookup information

2022-07-07 23:37:00 Rain fish in summer

oracle Information related to table lookup may be used sql

oracle Information related to table lookup may be used sql

sql

select COLUMN_NAME,DATA_TYPE,DATA_LENGTH
from   dba_tab_columns
where  table_name =upper(' Your watch ')
order by COLUMN_NAME
select table_name,column_name,comments 
from user_col_comments 
where table_name=' Your watch ';
select * from user_tab_comments where table_name=' Your watch '
select table_name,column_name from user_tab_columns 
where column_name like '% Fields to look up %'; 
select * from tabs;
select * from user_tables;
原网站

版权声明
本文为[Rain fish in summer]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202130557396316.html