I am joining a table of about 70000 rows with a slightly bigger second table through inner join each. Now count(a.business_column) and count(*) give different results. The f
COUNT(*) counts most repeated field in your query, if you want to count full records - use COUNT(0).