I have a table like this-
I want to run a query so that I can have a output like it-
I don't have a clear idea how to do it. So, what I have done is-
SELECT
Count(* where status="Active") as count_active
Count(* where status="Inctive") as count_inactive
Count(* where status="Biase") as count_biase
FROM `subscribers`
And getting error, can anyone please help?

