Se vuoi un conteggio totale per tutti i record, dovresti farlo:
SELECT COUNT(*)
FROM
(
select distinct profile_id
from userprofile_...
union all
select distinct profile_id
from productions_...
) x
Se vuoi un conteggio totale per tutti i record, dovresti farlo:
SELECT COUNT(*)
FROM
(
select distinct profile_id
from userprofile_...
union all
select distinct profile_id
from productions_...
) x