I am getting values from different tables using UNION ALL
.
My code is as below.
SELECT DISTINCT datei, amount FROM
(
SELECT datei, amount, 1 AS identification FROM income
UNION ALL
SELECT datee, amount, 2 AS identification FROM expense
UNION ALL
SELECT date, amount, 3 AS identification FROM others
) t
ORDER BY `datei` ASC
But I want it to be distinct
on date.
So how can I do that?
Thanks in advance.
To get single amount for date you can use following query