Jump to content

SQL Query Syntax Help - INTERSECT


jerald717

Recommended Posts

So apparently this doesn't work:

 

SELECT tols.tutor_id

FROM tutor_overall_level_subject AS tols

WHERE tols.subject_level_id LIKE 1

INTERSECT

SELECT tols.tutor_id

FROM tutor_overall_level_subject AS tols

WHERE tols.subject_level_id LIKE 2

 

MySQL said: Documentation

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTERSECT

SELECT tols.tutor_id

FROM tutor_overall_level_subject AS tols

WHERE t' at line 4

 

tried looking and googling all over but can't seem to find anything wrong with it. Help?

Link to comment
Share on other sites

Hmm I dont think the JOIN will work as well as I'd want it to work though.

 

I tried:

SELECT tols.tutor_id

FROM tutor_overall_level_subject AS tols JOIN tutor_profile AS tp ON tols.tutor_id = tp.tutor_id

WHERE tols.subject_level_id LIKE 1 AND tols.subject_level_id LIKE 2

and this returns an empty set. doesnt work the way intersect is supposed to work.

 

I have 2 tables, tutor_overall_level_subject AS tols and tutor_profile AS tp, with tutor_id as key.

 

in tols, one tutor_id can have many different subject_level_ids. I want to be able to query SQL such that I pull out tutors that have selected say subject levels 1 AND 2 (tutors who have selected only subject levels 1 or subject level 2 will not show up).

 

anyone has ideas?

Link to comment
Share on other sites

LEFT JOIN gave an empty set still.

 

SELECT tols.tutor_id

FROM tutor_overall_level_subject AS tols LEFT JOIN tutor_profile AS tp

ON (tols.tutor_id = tp.tutor_id)

WHERE (tols.subject_level_id = 1) AND (tols.subject_level_id = 2)

 

I think it's got to do with WHERE (tols.subject_level_id = 1) AND (tols.subject_level_id = 2) which returns the null set? The problem is for each subject_level_id , it's stored in a different row. So there could be 2 entries for tutor A in tols. tutor A - subject 1 , tutor A - subject 2.

Link to comment
Share on other sites

Yeah, your right, it can't ever equal both 1 and 2 at the same time.  A work around mat be:

SELECT tols.tutor_id
FROM tutor_overall_level_subject AS tols INNER JOIN tutor_profile AS tp
ON (tols.tutor_id = tp.tutor_id)
having COUNT (tols.subject_level_id) = 2

This should show only those that have taken 2 cources.  Not too flexible, but I'll keep looking.

Link to comment
Share on other sites

SELECT tp.tutor_id
FROM tutor_profile AS tp
CROSS JOIN  tutor_overall_level_subject AS tols1 (tols1.tutor_id = tp.tutor_id)
CROSS JOIN  tutor_overall_level_subject AS tols2 (tols2.tutor_id = tp.tutor_id)
WHERE tols1.subject_level_id = 1 AND tols2.subject_level_id = 2

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.