On 2006-05-01 1:14 PM, "Robert DiFalco" <[EMAIL PROTECTED]> wrote:

> Would you need the DISTINCT if you change the query like so?
> 
> SELECT Site.Site_ID, Site, Status, Type
> FROM Site 
> JOIN Project ON Site.Site_ID = Project.Site_ID
> ORDER BY Site; 
> 
> You may also want to just try your initial query without the distinct to
> see if that is the issue. Also, do you have an index on the "Site"
> column? The issue with this query is that you are pretty much selecting
> everything from the Project table.

Robert -

Your query doesn't work - it finds ALL the rows in Project table and hence
repeats the sites..

I do have an index on the Site table, it is the Site_ID.  The
Project.Site_ID is also indexed.

Stephen P. Fracek, Jr.
[EMAIL PROTECTED]


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to