如果在Delphi中,可用Table或Query把数据库1、2中的数据取出,
进行四则运算放入数据库3中,如:
用ADOQuery,ADOQuery1连接数据库1,ADOQuery2连接数据库2,ADOQuery3连接数据库3;
数据库1的字段名为a,数据库2的字段名为b,数据库3的字段名为c,则
with ADOQuery3 do
begin
Active:=false;
Sql.Clear;
Sql.Add(insert into tablename(c) values('''
+ADOQuery1.FieldValues['a']+'+'+ADOQuery2.FieldValues['b']+''')');
Execsql;
end;