The relational-division tag has no wiki summary.
0
votes
1answer
43 views
How to write a specific MySQL query to perform a relational division/ intersect? Id est, what query do I write?
I'm having trouble understanding how to write a specific MySQL query to perform a relational division/ intersect. I have looked at the following links/ SO questions, but I'm still confused :
MySQL ...
2
votes
2answers
62 views
SQL find sets with common members (relational division)
I have separate sets of "classes" and "groups", each of which has been assigned one or more tags. I would like to find, for each group, the subset of classes that contains the same (or more) tags for ...
3
votes
1answer
47 views
SQL server,find distinct groups in a table
I have table
prdID item percentage
1 10 50
1 20 50
2 10 50
2 20 50
3 20 30
3 20 70
4 10 ...
1
vote
1answer
89 views
Relational division in LINQ?
Relational division is one of Codd's primitive relational operators, colloquially known as the suppliers who supply all parts. There have been various translations into SQL e.g. Celko discusses ...
1
vote
1answer
33 views
SQL: Find the teams containing a list users
I have a game where I have teams containing a number of users. There are different amounts of users in each team but for anyone team the combination of users makes that team unique.
I have created ...
1
vote
2answers
50 views
MySQL search FTS vs Multiple Queries
Working on a project where schema is something like this:
id , key, value
The key and value columns are varchar, and the table is InnoDB.
A user can search on the basis of key value pairs ... Whats ...
-1
votes
3answers
73 views
Translating a set theory idea into SQL [closed]
Say I have a the following db table:
╔═════════════════╦════════════╗
║ ADVERTISEMENTID ║ CATEGORYID ║
╠═════════════════╬════════════╣
║ 1 ║ A ║
║ 1 ║ C ...
0
votes
2answers
32 views
select data that has at least P and R
I have a table named Table1 as shown below:
ID AccountNo Trn_cd
1 123456 P
2 123456 R
3 123456 P
4 12345 P
5 111 R
6 111 ...
1
vote
1answer
54 views
SELECT value x WHERE x has same unknown value AND WHERE value y is in array
I have a table that stores product groups.
table "products_groups"
id | id_group | id_product
============================
1 | 1 | 1
2 | 1 | 2
3 | 1 | 3
4 | 2 ...
0
votes
1answer
60 views
Searching Across Multiple Tables
My application has some Pages which possess some Attributes. Pages can be Linked together. I would like my database structure to best support search for Links which contain certain Attributes that ...
2
votes
2answers
180 views
SQL query (in SQL, relational algebra and tuple relational calculus)
Im doing a test exam where I've gotten stuck on one particular query, in both its SQL code, relational algebra and tuple relational calculus.
The query states:
Find the (city,state) pairs which house ...
1
vote
2answers
53 views
How to count MySQL results in a has-many-through relation
There is pretty good article how to filter results in a has-many relation:
How to filter SQL results in a has-many-through relation
I'm just seeking a solution for COUNT result, not show them all.
...
2
votes
2answers
99 views
mysql select multitable - join
say i had the following tables
user_table
id username
1 abc
2 def
3 ghij
courses_table
id title
1 csc
2 math
3 syn
user_courses
user_id course_id
2 1
...
1
vote
2answers
58 views
MySQL duplicate query
I am trying to list a query if two types of products are listed in the table.
This is what I have in my database:
table1
productID
productDescription
productYear
table2
porductID2
...
1
vote
1answer
60 views
Select record if values exists for same user_id
I need to get records from a mysql database; in this table there are a list of action associated to users. I need to get all users that have column action = 3 and column action = 5; for example if ...
0
votes
2answers
46 views
Sql query wrong
Hi i have the following database schema
Professor (EMP ID,Name,Status,Salary,Age)
Course(Course ID,Course Name,PoINts)
Works(Course ID,EMP ID,Class ID)
I have written the following query to Return ...
2
votes
1answer
48 views
Return field in SQL that intersects on a second field?
I am trying to return the fields that have intersecting fields for a specific person. What I mean by this is
Name Friend
---- -----
Joe Sally
Joe Bill
Mary Sally
Mary Michael
...
3
votes
1answer
47 views
Count items in category A & B (MySQL)
I’m trying to alter something to make it work for me. I think my question is pretty easy to anwer for someone who knows SQL. I have the following table (two columns):
entry_id | cat_id
5 | 3
6 ...
2
votes
1answer
100 views
MYSQL select count relational division
I have this table in mysql
1. Is it possible to select a count of - ALL same entity_id where field_tags_tid=2 and field_tags_tid=7
in this example the result would be 1 because only entity_id=6 ...
2
votes
7answers
68 views
IN for many elements
I have tables:
Table Site
╔════╦═══════════════╗
║ ID ║ NAME ║
╠════╬═══════════════╣
║ 1 ║ stackoverflow ║
║ 2 ║ google.com ║
║ 3 ║ yahoo.com ║
║ 4 ║ cnn.com ║
...
1
vote
2answers
74 views
MySQL get all related IDs from a table matching an array
I'm facing a problem while trying to retrieve all productIDs from a table if they match all items in an array, in this case, return products only if they contain every ingredient the user searched ...
3
votes
2answers
112 views
tricky sql query - finding alternative supplier( relational division )
This is a question I got from a book (don't remember which), it goes like this:
You have three tables:
Supplier (supId, name)
Product (prodId, name)
inventory (supId, prodId)
You need to find, ...
2
votes
1answer
115 views
Transpose table with “list” of the same attributes
Is it possible to transpose a table with repeated columns?
Existing table:
user_id question_id body
1 1 'Text1 1'
1 1 'Text1 1-2'
1 2 ...
0
votes
3answers
59 views
Query different IDs with different values?
I'm trying to write a query for a golf database. It needs to return players who have statisticID = 1 with a p2sStatistic > 65 and who also have statisticID = 3 with p2sStatistic > 295.
One ...
0
votes
2answers
46 views
PostgreSQL - how to query “result IN ALL OF”?
I am new to PostgreSQL and I have a problem with the following query:
WITH relevant_einsatz AS (
SELECT einsatz.fahrzeug,einsatz.mannschaft
FROM einsatz
INNER JOIN bergefahrzeug ON ...
2
votes
2answers
65 views
Simple SQL Select with all matches
SQL question: I have table with two columns: ProductId and CatId
I want to select products that belong to all of the passed in CatIds.
For example this is my table:
ProductID CatID
...
1
vote
1answer
85 views
SQL query on showing a grouped rows that contains all values from a list
SQL QUERIES
TABLE - CUSTOMER
1001,1
1001,2
1001,3
1002,1
1002,3
1003,3
TABLE - PRODUCT
1
2
3
The result should be 1001 coz it got all the values match the order table.
The PRODUCT table might ...
1
vote
2answers
254 views
Many-to-many relation filter
I need to filter my query with categories table which has many2many relation with another table. Is it possible to filter query with many2many relation? Everything I tried with it, didn't give any ...
-2
votes
1answer
85 views
Logical conditional in PostgreSQL [closed]
I want the name of every male director that has directed more than 20 movies and has cast in every single movie he has directed. If he has cast a movie, but hasn't directed it, that's okay and I still ...
0
votes
4answers
102 views
SQL query where all A's must have the following coumns from B that are equal?
Here's my specific example of what I mean. I have the following table defined:
CREATE TABLE pets (
id INTEGER UNSIGNED NOT NULL,
name VARCHAR(20) NOT NULL,
breed VARCHAR(20) NOT NULL,
...
2
votes
4answers
89 views
How to find if a list/set is contained within another list
I have a list of product IDs and I want to find out which orders contain all those products. Orders table is structured like this:
order_id | product_id
----------------------
1 | 222
1 ...
0
votes
1answer
81 views
t - sql how to intersect records with 2 columns
I have 2 columns
Config Plant
------ -----
ROC DEP1
RET DEP1
ROC UAP1
RET UAP1
SSL UAP1
ROC PLP2
RET PLP2
How to get records of ...
1
vote
5answers
68 views
Inner queries on a single table with IN and NOT IN conditions
This is a modification to my previously answered question
I have data in the table like below:
ROLE_ID | USER_ID
------------------
14 | USER A
15 | USER A
11 | USER B
13 | USER ...
0
votes
4answers
65 views
SQL Join IN Query with AND?
I have the following tables:
Option
-------
id - int
name - varchar
Product
---------
id - int
name -varchar
ProductOptions
------------------
id - int
product_id - int
option_id - int
If I have ...
8
votes
6answers
1k views
PostgreSQL where all in array
What is the easiest and fastest way to achieve a clause where all elements in an array must be matched - not only one when using IN? After all it should behave like mongodb's $all.
Thinking about ...
0
votes
2answers
74 views
Need simplify sql query with “count” function and “IN” operator
I have a table only consisting of two columns:
ObjectID||PropertyID
The task: get the all ObjectID whith PropertyID == (P1 and P2 and P3 and ...).
I solved this task:
SELECT *
FROM (
...
1
vote
1answer
77 views
AND conditions in many-to-many relation
Say I have three tables, a table of users, a table of around 500 different items, and the corresponding join table. What I would like to do is:
select * from users u join items_users iu on iu.user_id ...
4
votes
1answer
72 views
2
votes
3answers
293 views
SQL aggregate unique pairs
I have a PostgreSQL table that is mostly a bridge table but it also has some extra stuff.
Essentially it holds the information about players in a game. So we have a unique id for this instance of a ...
2
votes
4answers
84 views
SQL to return a merged set of results
I have the following SQL:
SELECT `table1`.`value`, `table2`.*
FROM `table2`
INNER JOIN `table1` ON `table2`.`product_id` = `table1`.`entity_id`
WHERE `table2`.`created_at` > '2012-04-23' and
...
1
vote
2answers
168 views
SQL, matching all the values in column b and return column a for those matches
I'm only looking at one table, I have the values I need to match, so.
Col A / Col B
1 / 1
1 / 2
1 / 3
2 / 2
2 / 3
4 / 1
4 / 3
So the values I pass in would be 1 and 3 and I'd want to return 1 and ...
0
votes
3answers
252 views
Exclude results with join conditions
I'm trying to make an sql request with join exclusion.
Explains:
Table element
id # name #
1 Sea
2 tree
Table colour
id # name #
1 green
2 blue
3 brown
Table relation
...
0
votes
6answers
132 views
Get records having both values in “IN” using SQL
I need a SQL statement to extract those applicants from the database who have both the attachment tags. The belowq statement works fine if I want aaplicant who have either 7 or 8 as the attachment tag ...
-1
votes
1answer
84 views
Return only employee types who have a presence in all countries in a subregion [closed]
Table 1
Employee Name,Employee type, Country Present
Jim Mith , Consulting,England
Jim Mith, Manfacturing, Scotland
Jim Mith, Consulting, Northern Ireland
Mavis Mith, Consulting, France
Jim ...
2
votes
3answers
378 views
SQL, only if matching all foreign key values to return the record?
I have two tables
Table A
type_uid, allowed_type_uid
9,1
9,2
9,4
1,1
1,2
24,1
25,3
Table B
type_uid
1
2
From table A I need to return
9
1
Using a WHERE IN clause I can return
9
1
24
5
votes
2answers
91 views
How can I find groups of records that match other groups of records (relational division?)
For setting consolidated account handling, I want to find out accounts that
have "exactly the same" set of owners.
I think it might work to pivot the owners with dynamic sql, then use
ranking ...
0
votes
3answers
131 views
Find Items Where All Parts Are In Stock
Hopefully fairly easy query, but my mind is just not working this afternoon. I've got the following tables:
tblCocktail
CockTailID CocktailName
1 Alexander
tblCocktailIngredient
...
0
votes
4answers
175 views
Need help coming up with query to find something that is in everything
Ok, I am working with the publishers database and the query that I need to come up with
is to find the title of any book that has sold copies in every store.
The main tables that I am dealing with ...
0
votes
3answers
143 views
How to do intersection on a composition table
I have a simple SQL relational model with a many to many relation. Here is the composition table
___________________________
| object1_id | object2_id |
|---------------------------|
I would ...
3
votes
1answer
83 views
SQL use of conditional AND on a join table to ensure at least two or multiple values are matched
I have a join table named languages_services that basically joins the table services and languages.
I need to find a service that is able to serve both ENGLISH (language_id=1) and ESPANOL ...

