I want to calculate the difference between the results of 2 count(*)-type SELECT queries executed on 2 separate tables of my PostgreSQL database.
count(*)
This w
Try this way:
select ( SELECT "count"(*) as val1 from tab1 ) - ( SELECT "count"(*) as val2 from tab2 ) as total_count