Hello,
I have a query which gives a weird result. The query is:
SELECT SUM(t1.hits) AS tab1, SUM(t2.hits) AS tab2
FROM table1 AS t1, table2 AS t2
When I run it, it gives the result threefold.
Say the data in the two tables would be:
| table1 | table2 |
===================
| 1 | 4 |...