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

Is something like this possible:

SELECT DISTINCT COUNT(productId) WHERE keyword='$keyword'

What I want is to get the number of unique product Ids which are associated with a keyword. The same product may be associated twice with a keyword, or more, but i would like only 1 time to be counted per product ID

share|improve this question

5 Answers

up vote 33 down vote accepted

use

SELECT COUNT(DISTINCT productId) WHERE keyword='$keyword'
share|improve this answer

You were close :-)

select count(distinct productId) where keyword='$keyword'
share|improve this answer

I would do something like this:

Select count(*), productid from products where keyword = '$keyword' group by productid

that will give you a list like
count(*) productid
5 12345
3 93884
9 93493

This allows you to see how many of each distinct productid ID is associated with the keyword

share|improve this answer

FYI, this is probably faster,

SELECT count(1) FROM (SELECT distinct productId WHERE keyword = '$keyword') temp

than this,

SELECT COUNT(DISTINCT productId) WHERE keyword='$keyword'
share|improve this answer
3  
Do you mind explaining why? I'm curious. – lpacheco Mar 20 at 18:50

Isn't it better with a group by? Something like:

SELECT COUNT(*) FROM t1 GROUP BY keywork;
share|improve this answer
He wants the number of distinct productID's. Your query returns the number of rows for each keyword. – David Jun 16 '09 at 15:58

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.