select table_name,tablespace_name,temporary from user_tables where table_name like '%PROV%'spa
分析:table
table_name:表名(varchar2(30));select
tablespace_name:存储表名的表空间(varchar2(30));margin
temporary:是否为临时表(varchar2(1))。top
4种通配符的含义tab
% 表示零个或多个字符集合
_ 表示单个字符di
[] 表示范围[a-f]或集合[abcdef]的任何单个字符字符
[^] 表示不属于指定范围的[a-f] 或集合[abcdef]的单个字符 一般表示[^a-f] or [^abcdef]ab