How to calculate Sum of Count(*) in Mysql

Viewed 16273

I have two tables that I count rows of them. For example;

Select count(*) FROM tbl_Events

Select count(*) FROM tbl_Events2

I need total count. How can I sum the result with a single statement?

3 Answers
Related