摘要:
1.方式一:采用SELECT * INTO FROM 复制表数据以及结构到新表,再清空原表并重置序列 代码如下: 点击查看代码 private void pnsDataCopy() { log.info("{} >表开始复制",PNS_TABLE); long l = System.currentT 阅读全文
摘要:
例子: select * into new_tabname from old_tabname where (条件) insert into new_tabname select * from old_tabname where (条件) 共同点: 都是用来复制表 区别: select into fr 阅读全文