Jump to content

[SOLVED] query not showing results


vinpkl

Recommended Posts

hi all

 

this query works fine


$qry_p="select * from product_table where category_name='Digital Cameras' AND  status='Y'";

 

this query also works fine


$qry_p="select * from product_table where category_name='Digital SLR Cameras' and status='Y'";

 

but when i want result of both categories means "Digital cameras" and "Digital SLR Cameras" then no result is found

 


$qry_p="select * from product_table where category_name='Digital Cameras' AND category_name='Digital SLR Cameras' and status='Y'";

 

vineet

Link to comment
Share on other sites

While it is true that AND makes sense if that was a written sentence, it does not make logical sense. Logically, that says I want to match rows WHERE category_name is one value AND category_name is another value at the same time. The condition in the WHERE term must be TRUE for the matching rows.

 

You actually need to use OR. I want to match rows WHERE category_name is one value OR category_name is another value.

Link to comment
Share on other sites

HI PFMaBiSmAd

 

Thanks for the reply. Its now showing both results.

 

solved.

 

vineet

 

While it is true that AND makes sense if that was a written sentence, it does not make logical sense. Logically, that says I want to match rows WHERE category_name is one value AND category_name is another value at the same time. The condition in the WHERE term must be TRUE for the matching rows.

 

You actually need to use OR. I want to match rows WHERE category_name is one value OR category_name is another value.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.