close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Mysql Query for finding products having color = red and size =s

Thread began 3/11/2015 4:57 am by anonymous | Last modified 3/13/2015 10:53 pm by anonymous | 2911 views | 6 replies |

anonymous

Mysql Query for finding products having color = red and size =s same database which you have provided.

I need a single query for finding products having where conditions on product's option like color=red and size=s in same database which you have provided.

Sign in to reply to this post

Jason ByrnesWebAssist

When you say:
"in same database which you have provided."

are you referring to the eCommerce database? There are a number of different databases we have provided over the years, so just want to be specific.

if using the eCommerce database, the query would be:

SELECT products.ProductID,options.* FROM Products
INNER JOIN productoptions on Products.ProductID = productoptions.ProductID
INNER JOIN options ON options.OptionID = productoptions.OptionID
WHERE options.OptionName = 'red' OR options.OptionName = 'yellow'

Sign in to reply to this post

anonymous

I have downloaded wa_ecommerce_db-8072013.zip

Sorry for creating confusion. The database is wa_ecommerce_db-8072013.zip which is downloaded from below mentioned link: http://www.webassist.com/tutorials/Free-eCommerce-MySQL-Database

Also I need both conditions for color & size and if we using same query mentioned below, then no result found as both id not in same row. However result is ProductID = 1

SELECT products.ProductID,options.* FROM Products INNER JOIN productoptions on Products.ProductID = productoptions.ProductID INNER JOIN options ON options.OptionID = productoptions.OptionID WHERE options.OptionName = 'red' AND options.OptionName = 's'

Sign in to reply to this post

Jason ByrnesWebAssist

your where condition should use OR:
WHERE options.OptionName = 'red' OR options.OptionName = 's'

Sign in to reply to this post

anonymous

I need intersection result

I need intersection result, because i need s size products having color = red

Sign in to reply to this post

Jason ByrnesWebAssist

i dont understand what you mean by "intersecting result", but in this case you need to use OR in the condition since it is one column that contains the value.

perhaps you mean that yo want to find results for a particular product ID?

in that case add another condition for the productsID
WHERE (options.OptionName = 'red' OR options.OptionName = 's') AND products.ProductID = 12

Sign in to reply to this post

anonymous

Query

I want the another solution of result found using below mentioned query

SELECT
products.ProductId,
options.*,
GROUP_CONCAT(CONCAT_WS('-',options.OptionGroupID, options.OptionName)) as properties
FROM
products
INNER JOIN
productoptions on products.ProductID = productoptions.ProductID
INNER JOIN
options ON options.OptionID = productoptions.OptionID
GROUP BY
ProductId
HAVING
properties LIKE '%1-red%' AND properties LIKE '%2-S%';

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...