A Armitage Banned Feb 23, 2001 8,086 0 0 Jan 6, 2005 #1 So I can count the rows: SELECT count(*) FROM my_table I can return distinct rows: SELECT DISTINCT my_column FROM my_table But can I count the distinct records without actually returning them?
So I can count the rows: SELECT count(*) FROM my_table I can return distinct rows: SELECT DISTINCT my_column FROM my_table But can I count the distinct records without actually returning them?
Mr.IncrediblyBored Lifer Jun 18, 2000 11,220 783 126 Jan 6, 2005 #2 This would be one way. Perhaps not the best way, but still: