insert into B
成都创新互联公司服务项目包括眉山网站建设、眉山网站制作、眉山网页制作以及眉山网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,眉山网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到眉山省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
(col1,col2,col3,...,coln,colDate)
select
col1,col2,col3,...,coln,sysdate
from A
--当然,如果你A、B两表的字段顺序一致就可以用*
可用如下方法复制:
如果新表不存在:
比如有一张表叫test,现在要复制表结构及表内数据,可执行代码:
create table test as select * from test;
这样就把表结构连同数据一起复制了。
如果表存在,可用以下代码:
insert into test1 select * from test;commit;
1、首先打开电脑,点击进入浏览器。
2、其次点击搜索oracle,选择第一个进入,点击选择数据化,选择复制的包,点击使用。
3、最后点击确认即可。
insert into gl_acc_item select * from gl_acc_item20100706 t where t.fiscal ='2010' and t.acc_item_code = 'ACC_ITEM5' and length( t.gl_item_code)1 and t.gl_item_code not like '2%';
要修改数据,那么就需要把*换成具体字段,并用'2009'代替fiscal字段,
比如总共有acc_item_code、fiscal、id、name等几列,就要写成:
insert into gl_acc_item select acc_item_code,'2009',id,name from gl_acc_item20100706 t where t.fiscal ='2010' and t.acc_item_code = 'ACC_ITEM5' and length( t.gl_item_code)1 and t.gl_item_code not like '2%';
你是要复制出来还是复制到另外一个表结构:
复制的话直接sql语句 :1. 复制表结构及其数据: create table table_name_new as select * from table_name_old
2. 只复制表结构: create table table_name_new as select * from table_name_old where 1=2; 或者: create table table_name_new like table_name_old
3. 只复制表数据:如果两个表结构一样:insert into table_name_new select * from table_name_old 如果两个表结构不一样:insert into table_name_new(column1,column2...) select column1,column2... from table_name_old
导出来的话指令不写了、直接百度就有了。
还真不知道 ORacle的 应该有,因为用友是 叫常用凭证更能的。每个月经常用到的 调出来修改后保持就行了。 问问 技术支持看看!