In mysql can
select * form (
(select count (1) as a from a),
(select count (1) as b from b),
(select count (1) as the from c c)
)
But how to write in PGSQL? Do not use the UNION
select * form (
(select count (1) as a from a),
(select count (1) as b from b),
(select count (1) as the from c c)
)