I have a table that store more than 10 million of data and when I use simple query such as
SELECT TOP 10 COALESCE(a.Name, 'NA') AS Name,
COUNT(DISTINCT a.Id) AS Result1,
COUNT(b.Id) AS Result2
FROM Table1 a INNER JOIN Table2 b ON a.Id = b.Id
GROUP BY a.Name
it takes approximately 20 mins to return the result.
Is there any way to count the distinct column faster than using COUNT(DISTINCT)
?
*I also tried to use GROUP BY
but its just the same.
if the column is a foreign key column you might can try to select the count from the foreign key table where the ID exists in the larger table.