Tagged Questions

4
votes
3answers
2k views

Is there set division in SQL?

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?
3
votes
2answers
349 views

Recursive sql subset query, using connect by

I have two tables that look a little like this AGR_TERR_DEF_TERRS ID DEF_ID TERRITORY_ID (foreign key links to TERRITORIES.ID) TERRITORIES ID NAME PARENT_ID (parent_id and id are ...
3
votes
2answers
175 views

SQL query to identify completely contained subset

I am scratching my head to figure out a solution to the following question: I have a table with two fields, USER_ID and CLIENT_ID. For each USER_ID there are 1 to n CLIENT_IDs. Let us say that user ...
0
votes
1answer
103 views

SQL: Matching records by set theory

I've been struggling lately with a complex SQL query. I have the following tables: [dbo].[User] ~ {ID,nickname} [dbo].[Property] ~ {ID,title} [dbo].[Property_Values] ~ [ID,propertyID,title} ...