mgm_03 Posted August 27, 2003 Share Posted August 27, 2003 I have 3 tables: companies, services, company_service (many to many relation) this query works fine (meaning the query returns a result) except when I include \"Co_ID\" in the SELECT statement, the query returns no result...what am I missing. Co_ID is an integer and primary key for the companies table. $query = "SELECT Co_ID, company, address, city, state, zip FROM companies, company_service WHERE companies.Co_ID=company_service.Co_ID AND company_service.service_id=$svid ORDER BY zip"; any thoughts are greatly appreciated. Thanks, a Noobie Link to comment https://forums.phpfreaks.com/topic/944-stumpedpls-check-this-query/ Share on other sites More sharing options...
mgm_03 Posted August 27, 2003 Author Share Posted August 27, 2003 i solved my problem by changing the SELECT statement from SELECT Co_id ... FROM ... to SELECT companies.Co_id ... From... Link to comment https://forums.phpfreaks.com/topic/944-stumpedpls-check-this-query/#findComment-3200 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.