Sure. I use PostgreSQL, but I'm pretty sure this is standard.
SELECT count(*) FROM (
SELECT something_similar FROM table1 UNION
SELECT something_similar FROM table2
....
);
And you essentially plug all the rows together into one table with one field and count it up. I think that's the fastest way to do it.
Also, just to be a little more explicit, what I mean by something similar is an identical data type. Like int, varchar(x), or something else THE SAME. Otherwise UNION doesn't work.