This commit is contained in:
tilman
2017-01-07 06:57:36 +01:00
parent 85bfe3d70a
commit 8d25c7180e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
SELECT FORMATDATETIME(t.date,'dd.MM.yyyy') as Date, c.name, t.amount, t.description
FROM Transaction t
JOIN Category c on (t.category_id = c.id)
WHERE t.account_id = 1 and t.date >= parsedatetime('2016-06-01','yyyy-MM-dd')
WHERE t.account_id = 1 and t.date >= '2016-06-01'
ORDER BY t.date ASC, t.last_change ASC
-- Kategorien-Liste für Account 1