У вас есть запятая вместо AND или OR в предложениях 2 WHERE.
Вместо (см. Комментарии -- <<<<<<<<<< ...
): -
SELECT *, (
SELECT SUM(records.amount) AS total_income FROM records
WHERE records.category = "income", -- <<<<<<<<<< comma not AND or OR
records.date BETWEEN DATE("now", "start of month") AND DATE("now", "start of month", "+1 month", "-1 day")
), (
SELECT SUM(records.amount) AS total_expense FROM records
WHERE records.category = "expense", -- <<<<<<<<<< comma not AND or OR
records.date BETWEEN DATE("now", "start of month") AND DATE("now", "start of month", "+1 month", "-1 day")
)
FROM accounts INNER JOIN records ON accounts.id = records.accountId;
Хотя это и не синтаксическая ошибка, вы, вероятно, хотите, чтобы предложение AS находилось за пределами подзапросов
Попробуйте: -
SELECT *, (
SELECT SUM(records.amount) FROM records -- <<<<<<<<<<< remove the AS clause
WHERE records.category = "income" AND -- <<<<<<<<<< AND instead of comma
records.date BETWEEN DATE("now", "start of month") AND DATE("now", "start of month", "+1 month", "-1 day")
) AS total_expense, -- <<<<<<<<<< Moved to name the column in the result
(
SELECT SUM(records.amount) FROM records -- <<<<<<<<<<< remove the AS clause
WHERE records.category = "expense" AND -- <<<<<<<<<< AND instead of comma
records.date BETWEEN DATE("now", "start of month") AND DATE("now", "start of month", "+1 month", "-1 day")
) AS total_expense -- <<<<<<<<<< Moved to name the column in the result
FROM accounts INNER JOIN records ON accounts.id = records.accountId;
например,
- Обратите внимание, что каждая строка будет иметь сумму, поэтому это не текущее накопление, а каждый результат будет иметь одинаковые суммарные значения.
Дополнительный комментарий: -
как вы говорите, я получаю "повторяющиеся строки" для каждой записи, связанной с учетной записью, а не накопление.Я передам эту информацию в программу recyclerView Adapter, так что это будет проблемой.Теперь я заканчиваю запрос учетными записями FROM и получаю только одну строку для каждой учетной записи с соответствующей суммой.
Я считаю, что следующее может быть тем, что вы хотите, или основой того, что вы хотите: -
-- Create testing schema and data
DROP TABLE IF EXISTS accounts;
DROP TABLE If EXISTS records;
CREATE TABLE IF NOT EXISTS records (amount INTEGER, category TEXT, date TEXT, accountId INTEGER);
CREATE TABLE IF NOT EXISTS accounts (id INTEGER PRIMARY KEY, accountname TEXT);
INSERT INTO accounts (accountname) VALUES('account1'),('account2');
INSERT INTO records (amount, category, date, accountId) VALUES
-- account 1
(300,'income','2018-12-31',1),
(25,'expense','2018-12-31',1),
(100,'income','2019-01-01',1),
(30,'expense','2019-01-01',1),
(40,'expense','2019-01-02',1),
(200,'income','2019,01-02',1),
-- account 2
(600,'income','2018-12-31',2),
(325,'expense','2018-12-31',2),
(700,'income','2019-01-01',2),
(330,'expense','2019-01-01',2),
(440,'expense','2019-01-02',2),
(5200,'income','2019,01-02',2)
;
/* The query
assumes that the records table is not a WITHOUT ROWID table
and that the id reflects the insertion order which reflects
the order in which transactions are considered to have happened
*/
SELECT *,
r.rowid AS ambiguos_recordsid, -- for demo/testing
date('now','start of month') AS startdate, -- for demo/testing
date('now','start of month', '+1 month', '-1 day') AS enddate, -- for demo/testing
r.date BETWEEN date('now','start of month') AND date('now','start of month', '+1 month', '-1 day') AS resultdate, -- for demo/testing
(
SELECT sum(amount)
FROM records
WHERE
records.rowid <= r.rowid AND category = 'income'
AND (date BETWEEN date('now','start of month') AND date('now','start of month', '+1 month', '-1 day'))
AND accountid = r.accountid
) AS rolling_income,
(
SELECT sum(amount)
FROM records
WHERE
records.rowid <= r.rowid AND category = 'expense'
AND (date BETWEEN date('now','start of month') AND date('now','start of month', '+1 month', '-1 day'))
AND accountid = r.accountid
) AS rolling_expense
FROM records AS r JOIN accounts on accountId = accounts.id
WHERE r.date BETWEEN date('now','start of month') AND date('now','start of month', '+1 month', '-1 day')
ORDER BY r.accountid, r.rowid
;
Используя вышеизложенное, результат: -