19.txt
来自「Oracle database 10g基础教程(第二版) 源码」· 文本 代码 · 共 21 行
TXT
21 行
column table_name format a30
column comments format a40 word_wrapped
select table_name, comments
from dict
where table_name like '%VIEWS%'
order by table_name;
select table_name, table_type
from cat
where table_name like 'T%';
select name, type
from user_source;
select *
from user_ts_quotas;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?