Nếu bạn muốn tổng số cho tất cả các bản ghi, thì bạn sẽ làm như sau:
SELECT COUNT(*)
FROM
(
select distinct profile_id
from userprofile_...
union all
select distinct profile_id
from productions_...
) x
Nếu bạn muốn tổng số cho tất cả các bản ghi, thì bạn sẽ làm như sau:
SELECT COUNT(*)
FROM
(
select distinct profile_id
from userprofile_...
union all
select distinct profile_id
from productions_...
) x