具有多个表的列的所有行的总和值

Im using this to get a total count

$exe = mysql_query('SELECT SUM(field_3) FROM t_a');
$res = mysql_fetch_row($exe);
echo 'Total Count: ' .$res[0] . ' / XX';

But I need it from multiple tables with the same structure, named t_a, t_b, all the way to t_z

You can use Union All in my sql

select sum(field_3) total
from
(
    select field_3
    from t_a
    union all
    select field_3
    from t_b
) t
group by field_3