It is necessary to make a request for output in the form of a table in Delphi. There is a request code:
Query1.Active := False; Query1.SQL.Clear; Query1.SQL.Add('select * from table1 where nazvanie like ' +chr(39) + Edit2.Text + chr(39)); Query1.Active := true;
When I enter a name, for example, a ΠΏΠΈΠ»Π°
, it makes a selection for me and gives out a ΠΏΠΈΠ»Π°
and + all values ββin the fields. It is necessary to make it so that if there is a ΠΏΠΈΠ»Π°
in the field, ΠΏΠΈΠ»Π° 2
, ΠΏΠΈΠ»Π° 3
, then they are derived from the similarity: ΠΏΠΈΠ»Π°
, ΠΏΠΈΠ»Π° 2
, ΠΏΠΈΠ»Π° 3
.