我有以下查询:
select distinct profile_id from userprofile_... union select distinct profile_id from productions_...
我如何获得结果总数的计数?
如果您想要所有记录的总数,则可以执行以下操作:
SELECT COUNT(*) FROM ( select distinct profile_id from userprofile_... union all select distinct profile_id from productions_... ) x