adoquery1.close;
adoquery1.sql.clear;
adoquery1.sql.add('select * from 表1');
adoquery1.open;
--------
adoquery1.first;
while not adoquery1.eof do
begin
  adoquery1.delete;
  adoquery1.next;
end;
好象删除的不完整啊  还有记录删不掉   
哪里出问题了????
(PS:只能用这样子删  因为代码有特殊要求)