Is there a way how to get the row count for a big table (billions of rows) with a condition? Is there an alternative to the following code?
select count(*) from MyBigTable where ChosenColumn = 1
Without the condition where ChosenColumn = 1, there are several solutions listed here: Fastest way to count exact number of rows in a very large table?
and
Is there a way how to apply these solutions if there is a where-condition?