我正在使用 Delphi 7、BDE 和 Interbase(测试)、Oracle(生产)。
我有两张桌子(大师,回应)
我需要遍历 Responses 表,使用其 Master_Id 字段在 Master 表 (id) 中查找它以匹配记录,并使用 Responses 表中的日期字段更新 Master 表中的日期字段
这可以在 SQL 中完成,还是我实际上必须创建两个 TTables 或 TQueries 并逐步遍历每条记录?
例子:
打开两个表(Table1,Table2)
with Table1 do
begin
first;
while not EOF do
begin
//get master_id field
//locate in id field in table 2
//edit record in table 2
next;
end;
end;
谢谢