有一个listbox控件!!!!里面的数据对应表JC的字段Cname!!现在想把表JC里面的Yes字段付为1值!如果来个for循环可以解决!for I := 0 to listbox1.Count-1 do    // Iterate
begin
  adoconnection1.Execute('update JC set yes=1 where cname ="'+listbox1.Items.Strings[i]+'"');
end;有什么方法不用循环,只用一条语句就可以完成呢?