I'm doing the following query in Delphi, using MySQL:
QueryExtraiDados.Close;
QueryExtraiDados.SQL.Clear;
QueryExtraiDados.SQL.Add('Select * from clientes where nascimento='+QuotedStr('%'+antecedencia+'%')+' ');
QueryExtraiDados.Open;
It does not return anything to me in Delphi, if I run the following query in MySQL:
Select * from clientes where nascimento='2015/05/26'
How can I resolve this?
Abs