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 the following SQL query:

SELECT games.id, games.GameTitle FROM games 
WHERE EXISTS (
              SELECT filename FROM banners 
              WHERE banners.keyvalue = games.id 
                AND banners.filename LIKE '%front%'
             )

which is not quite correct for my use

what I'd like is something like:

SELECT games.id, games.GameTitle 
FROM games WHERE EXISTS (
    COUNT(SELECT filename FROM banners 
    WHERE banners.keyvalue = games.id AND banners.filename LIKE '%front%') > 1
    )

i.e. only select when the subquery retrieves more than 1 row.

share|improve this question

2 Answers

up vote 5 down vote accepted

Simply like that :

SELECT games.id, games.GameTitle 
FROM games 
WHERE (
    SELECT COUNT(filename)
    FROM banners
    WHERE banners.keyvalue = games.id AND banners.filename LIKE '%front%'
) > 1
share|improve this answer
1  
+1 You beat me to it. COUNT(*) will also work. – Mike May 26 '11 at 20:14
thank you very much... that worked a treat..... i was sooo close as well! – Alex May 26 '11 at 20:14
@Mike since the selection was on filename in the original query, I kept that. @Alex glad I could help := – krtek May 26 '11 at 20:16
SELECT games.id, games.GameTitle 
    FROM games 
    WHERE EXISTS (SELECT COUNT(filename) 
                      FROM banners 
                      WHERE banners.keyvalue = games.id 
                          AND banners.filename LIKE '%front%'
                      HAVING COUNT(filename)>1)
share|improve this answer
+1 maybe faster than my own answer, a little test should be made... – krtek May 26 '11 at 20:15

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.