有张表,有一个用来保存审核状态的字段CERTI_INFO,是VARCHAR2类型,长度为50.如果这个字段的内容为空时,表示该记录未能通过审核.我写了条语句想找出所有没有通过审核的记录,但不知道哪里有问题,问题找不到未通过审核的记录.请各位帮着看看.先谢.  adoquery1.Close;
  adoquery1.SQL.Clear;
  adoquery1.SQL.Add('select b.name, a.fori_comp, a.fori_posi,');
  adoquery1.SQL.Add('a.cy_rank, a.certi_info');
  //edit1中输入档案编号
  adoquery1.SQL.Add('from chengy a, renyzl b where a.ser_num = '+quotedstr(trim(edit1.Text)));
  adoquery1.SQL.Add('and a.certi_info = '''' and b.per_num = a.per_num');
  adoquery1.SQL.Add('order by a.vorder');
  adoquery1.open;