Mysql
 sql >> Database >  >> RDS >> Mysql

Come eseguire un conteggio su una query di unione

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