× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I don't see what DISTINCT buys you as you are already guaranteeing unique
Plan by using GROUP BY.  Loyd's post also included ORDER BY which is nice as
it can list the output from highest count to lowest count, i.e.

SELECT Plan, COUNT(*)
FROM the_file
GROUP BY Plan
ORDER BY 2

Elvis

-----Original Message-----
Subject: RE: SQL Optimizer Issue

I did not realize there was a distinct() function, very handy. In case
anyone else out there is trying to run this, to get the query below to
run I needed to do.

Select distinct(plan), count(*) from the_file
Group by plan

Chris

-----Original Message-----
Subject: RE: SQL Optimizer Issue

Even better: 
Select distinct(plan), count(*) from the_file

Optionally: ... order by 2 desc

Loyd Goodbar




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.