摘要: 1. oracle根据查询结果创建新表【创建新表并复制旧表的表结构】 将查询结果直接插入新表 ``` sql create table new_table_name as select * from xxx where 1=2 ``` 2. 合并表数据 ``` sql merge into tabl 阅读全文
posted @ 2023-02-28 17:46 CodingSh1t 阅读(11) 评论(0) 推荐(0) 编辑