비슷한 조건으로 월 별로 합계를 만들은 MS ACEESS 에 SQL명령을 사용하여 델파이에서 시도를 했는데 되지 않아 글을 띄웁니다.
SQL 명령은 다음과 같읍니다.
SELECT Format([date],"yy/mm") AS Month, Sum(Table1.income) AS Totincome,
Sum(Table1.outcome)AS Totoutcome
From Table1
WHERE (((Table1.date)Like"*-*-*"))
GROUP BY Format([date],"yy/mm");
이것을 Query를 사용하여 DB Grid에 띄워보려 했으나 되지 않아 고민 중입니다.
Error message는 Invalid use of keyword [date],"yy/mm"입니다. 그리고 Date Type은
date로 했읍니다.
개인적인 생각은 Format 문제로 그런것 같은데
한수 부탁 드립니다.