Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two columns as company and product.

I use the following query to get the products matching particular string...

select id,(select name from company where product.cid=company.id) as 
company,name,selling_price,mrp from product where name like '$qry_string%'

But when i need to list products of specific company how can i do?

i tried the following but in vein

select id,(select name from company where product.cid=company.id) as
company,name,selling_price,mrp from product where company like '$qry_string%'

Help me

share|improve this question
2  
hope you have $qry_string properly escaped. Also I hope you would accept an answer that Worked great. – Your Common Sense Apr 29 '10 at 6:20

2 Answers

up vote 5 down vote accepted

What you are trying to do does not require a subquery, a simple join is enough. Try this:

select c.name, p.id, p.name, p.selling_price, p.mrp
  from company c
 inner join product p
    on c.id = p.cid
 where c.name like '$qry_string%'

I think the problem with the query you tried is that you cannot use fields that are the result of a subquery (in your case, "company") in the where clause. You might try having instead.

share|improve this answer
Thanks for the quick reply. Worked great – Vijay Apr 29 '10 at 6:15

You can use

SELECT p.id, c.name AS company, p.name, p.selling_price, p.mrp FROM product p, company c WHERE p.cid=c.id AND c.name LIKE '$qry_string'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.