我有两个数据库wm1.dbf和tj.dbf
wm1的字段有:cm,cj
tj的字段有:cm,cj,zh
tj数据库中已经存在数据,我想把wm1中的数据添加(追加)到tj数据库中(tj数据库中原有的数据部变),tj数据库中zh字段值为“桌号1”。
应该怎么解决?
我这里有一段代码能够实现,但是存在一个问题。
select * from wm1 into table temp
alter table temp add column zh c(8)
update temp set zh="桌号1"
select * from temp into array temp2
insert into tj from array temp2
insert into tjz from array temp2
执行这个语句可以实现,但是每回执行的时候都会弹出一个,数据库temp已经存在,是否更改。(我不想弹出这个对话框,很烦人的)。
哪位高手能够帮帮忙。很急。
谢谢了!