Skip to content
Advertisement

How to make a query that filter out two AND conditions on same column

Write a query that returns all pages that have been visited by at least one child (demo=’child’) and ALSO has been visited by at least one person aged 18-25 (demo=’18-25′). Your query should return a set of urls.

I am not sure how to write a query that filters out results based on Two AND statements on the same column and it returns out an empty set.

These are the two tables:

User

uid ip demo
A 001 child
B 002 18-25

Visit

url dt uid src rev
A01 1890-05-14 A A02 10
A01 002 B A03 15

This above code returns me an empty set.

I want it to return A01 as the url

Advertisement

Answer

First, you don’t need to use User table twice in the select expression.

I think it can be solved by using nested queries or as called subquery.

In explanation: first you will query the items match the first condition (demo=’child’) then you will search on the results for the items that also match the second condition (demo=’18-25′).

Your code will be like this:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement