smti Posted February 22, 2014 Share Posted February 22, 2014 Hello, I could use a little help solving the following problem: I have two tables: Counties and Products. The counties table contains a list of counties in which products are sold and the products table contains a list of products that are sold. I need to know the best way to write a query which produces a list products given the name of a county. My table structure structure is as follows: Table: Counties CountyID Name Table: ProductBrands BID Brand CountyID --> Foreign key relates to Counties.CountyID I tried using a join statement; however, I seem to get erroneous results. Any help would be greatly appreciated! Link to comment https://forums.phpfreaks.com/topic/286429-join-or-sub-query/ Share on other sites More sharing options...
Barand Posted February 23, 2014 Share Posted February 23, 2014 SELECT c.name, b. bid, b.brand FROM counties c INNER JOIN productbrands b USING (countyid) WHERE c.countyid = $id Link to comment https://forums.phpfreaks.com/topic/286429-join-or-sub-query/#findComment-1470127 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.