Wenn Sie eine Gesamtzahl für alle Datensätze wünschen, gehen Sie wie folgt vor:
SELECT COUNT(*)
FROM
(
select distinct profile_id
from userprofile_...
union all
select distinct profile_id
from productions_...
) x
Wenn Sie eine Gesamtzahl für alle Datensätze wünschen, gehen Sie wie folgt vor:
SELECT COUNT(*)
FROM
(
select distinct profile_id
from userprofile_...
union all
select distinct profile_id
from productions_...
) x