Eine genau Suche sieht in
SQL so aus:
Select <feldliste> from <tabelle> where <feld> = <wert>;
als
Delphi-Quellcode:
Adoquery.sql.Text := 'select id from Tabelle where memo = '+QuotedStr( memo.text);
AdoQuery.Open;
oder noch besser unter Verwendung von Parametern:
Delphi-Quellcode:
Adoquery.sql.Text := 'select id from Tabelle where memo = :such';
...
AdoQuery.Parameters.ParamByName('such').Value : Memo.Text;
AdoQuery.Open;