Hallo,
ich habe da ein kleines Problem mit volgender Abfrage die so aussieht
Delphi-Quellcode:
with Q_Preis
do
begin
Active := False;
SQL.Clear;
SQL.Add('
SELECT SUM(PREIS), '+
'
DATUM '+
'
FROM ESSEN '+
'
WHERE DATUM BETWEEN :Datum1 AND :Datum2 '+
'
GROUP BY DATUM ');
Prepared := True;
Params.ParamByName('
Datum1').Value := DateOf(MonthCalendar2.Date);
Params.ParamByName('
Datum2').Value := DateOf(MonthCalendar3.Date);
Active := True;
end;
Die
Query sagt mir das sie das Feld "Preis" nicht finden kann... aber es steht in der
Query! Oder hat ADS ein Problem mit SUM()?
Danke für die Hilfe
Greets