Delphi7.0结合SQLSERVER数据库实现的查询例子,演示如何查询指定字段为空的数据,主要是SQL查询语句的写法,起到了至关重要的作用,下面的代码中,包括了核心的查询语句供参考:   begin   withADOQuery1do   begin   close;   SQL.Clear;   SQL.Add('select*fromCOMMwhere'worder'=''''''''''');   open;   end;   ifADOQuery1.RecordCount>0then   show