I'm fully aware that set division can be accomplished through a series of other operations, so my question is:

Is there a command for set division in SQL?

link|improve this question

Can you clarify what you mean by set division? Do you mean things like intersection? – Mike McAllister Sep 21 '08 at 2:55
Also, are you talking about ANSI SQL, or a particular vendor's implementation of SQL? – Mike McAllister Sep 21 '08 at 3:01
feedback

3 Answers

up vote 4 down vote accepted

http://vadimtropashko.files.wordpress.com/2007/02/ch3.pdf

From Page 32:

Relational Division is not a fundamental operator. It can be expressed in terms of projection, Cartesian product, and set difference.

So, no. :)

link|improve this answer
feedback

Related question: http://stackoverflow.com/questions/48475/database-design-for-tagging

And relevant part of answer is this article

So in short, no, there is no set division in SQL.

link|improve this answer
feedback

Here is a nice explanation using relational algebra syntax.

Given tables sailors, boats and reserves (examples from Ramakrishnan & Gehrke's "Database Management Systems") you can compute sailors who have reserved all boats with the following query:

SELECT name FROM sailors
WHERE Sid NOT IN (
    -- A sailor is disqualified if by attaching a boat,
    -- we obtain a tuple <sailor, boat> that is not in reserves
    SELECT s.Sid
    FROM sailors s, boats b
    WHERE (s.Sid, b.Bid) NOT IN (
        SELECT Sid, Bid FROM reserves
    )
);

-- Alternatively:
SELECT name FROM sailors s
WHERE NOT EXISTS (
    -- Not reserved boats
    (SELECT bid FROM boats)
    EXCEPT
    (SELECT r.bid FROM reserves r
    WHERE r.sid = s.sid)
);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.