1.如果要对某条记录进行编辑,先按条件locate某条记录,然后再对记录进行修改
with query1 do
begin
open;
Locate(const KeyFields: string; const KeyValues: Variant; Options: TLocateOptions): Boolean; virtual;
fieldbyname('姓名').asstring:='qingxin';
edit;
post;
end;
2 .select 10 from query1
where ...
就可以从query1中选择10条记录,若要随即选取的话,应该再加一个随机函数即可!
希望以上信息能对你有用