MySQL Forums
Forum List  »  General

Re: Help with select ??
Posted by: Steve Grosz
Date: April 22, 2005 03:17PM

Clarify:

I would want to search for PID from the vendor table, based on model name from the model table and spec info from the specs table.

So would it be:

select vendor.PID
from vendor
left outer join model
on vendor.PID=model.VendorID
left outer join specs
on model.Model=specs.ProdModel
left outer join url
on specs.ProdModel=url.ProdModel
where vendor.Vendor='#URL.Vendor#'

Something like that?

Options: ReplyQuote


Subject
Written By
Posted
April 22, 2005 03:03PM
Re: Help with select ??
April 22, 2005 03:17PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.