oracle如何查询所有表?
程序员文章站
2022-05-07 16:46:35
oracle查询所有表:
select * from all_tables
nologging在insert into 有字段时,要放在字段括号前面
insert into t_custom...
oracle查询所有表:
select * from all_tables
nologging在insert into 有字段时,要放在字段括号前面
insert into t_customer nologging (a,b) values (select a,b from xxx)