http://sqlfiddle.com/#!2/b814c/6/0
select listener, SEC_TO_TIME( SUM( TIME_TO_SEC(time))) as total_time, count(listener) as total_listened from db1 where date = "2013-02-20" group by listener
How can i add db2 values to this query?
I tried nested queries, but it runs too slow and doesn't show only db2 listeners.
Both tables in different databases if it changes something.
Result should be like for this sample;
LISTENER TOTAL_TIME TOTAL_LISTENED
listener1 00:15:39 1
listener2 00:22:59 2
listener3 00:13:34 1
UNION ALL? – Explosion Pills Feb 19 at 22:39