Есть довольно много способов. Вот еще два. Использование values
и приведений:
select x, y, x/y ratio from
(
values
(
(SELECT COUNT(distinct user_id) FROM re_read)::numeric,
(SELECT COUNT(distinct user_id) FROM first_read)::numeric
)
) t(x,y);
или вложенных select
и приведений:
select x, y, x/y ratio from
(
select
(SELECT COUNT(distinct user_id) FROM re_read)::numeric,
(SELECT COUNT(distinct user_id) FROM first_read)::numeric
) t(x,y);