[求助]关于查询的问题.
if CheckBox2.Checked = True thenbegin
if (ComboBox6.Text = '请选择或输入设备名称') or (ComboBox6.Text = '') then
begin
MessageBox(Handle,'请选择或输入设备名称!',sSysName,MB_ICONINFORMATION);
ComboBox6.SetFocus;
Exit;
end;
sSQLT := 'EQUIPMENT_NAME = ''' + ComboBox6.Text + '''';
end
else
begin
sSQLT := '1 = 1';
end;
------------
这里的: sSQLT := '1 = 1'; 是什么意思啊..请指教!!