Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
4k views

SQL statement - “join” vs “group by and having”

This is a very basic query I can't figure out.... Let's say I have a two column table like this: userid - roleid 1 - 1 1 - 2 1 - 3 2 - 1 I want to get all distinct userids that have ...
8
votes
12answers
452 views

How to filter SQL results in a has-many-through relation

Assuming I have the tables student, club, and student_club: student { id name } club { id name } student_club { student_id club_id } I want to know how to find all students ...
6
votes
8answers
1k views

How do I avoid dynamic SQL when using an undetermined number of parameters?

I have a StackOverflow-like tagging system for a database I'm working on. And I'm writing a stored procedure that looks for results based on an undetermined number of tags in a WHERE clause. There ...
6
votes
2answers
5k views

SQL one-to-many match the one side by ALL in many side

In the following one to many CREATE TABLE source(id int, name varchar(10), PRIMARY KEY(id)); CREATE TABLE params(id int, source int, value int); where params.source is a foreign key to source.id ...
5
votes
5answers
96 views

MySQL Select ID's which occur on different rows with multiple specific values for a column

I'm trying to select items from an associative table that have satisfy two or more values of the same field, sounds confusing, let me explain. +-----------------------+ | item_id | category_id | ...
4
votes
3answers
192 views

SELECT multiple rows with WHERE

PID VALUE 3 1 4 3 1 9 1 3 How to select row(s) that has both values 3 and 9? I tried select PID from table where VALUE = 3 and VALUE = 9 So that i get ...
3
votes
2answers
104 views

How do I write a named scope to filter by all of an array passed in, and not just by matching one element (using IN)

I have two models, Project and Category, which have a many-to-many relationship between them. The Project model is very simple: class Project < ActiveRecord::Base has_and_belongs_to_many ...
3
votes
1answer
246 views

Translating INTERSECT statement to MySQL

I have the following query using INTERSECT and I can't figure out how to translate it to MySQL using INNER JOIN. SELECT DISTINCT Title, Variable FROM Table WHERE Location='Location1' AND Date='Date1' ...
3
votes
4answers
256 views

SQL query for selecting products with same ingredients of other products

I have a database that stores products "available on the market" and products "still in development" in two separate tables (market_product and dev_product). A third table (substance) contains all ...
2
votes
1answer
87 views

Joining 3 tables SQL

I am trying to solve this problem for quite some time and the output is wrong. Can anyone help me with this? I am using mysql, so full join doesnt work. Thank yyou 3 tables: Frequents (attributes: ...
2
votes
5answers
64 views

Equivalent of “IN” that uses AND instead of OR logic?

I know I'm breaking some rules here with dynamic SQL but I still need to ask. I've inherited a table that contains a series of tags for each ticket that I need to pull records from. Simple ...
2
votes
5answers
101 views

Join: three tables and a or condition

I think I should know this somehow, especially after reading a lot of questions and answers regarding "The condition must go into the ON clause, not in the WHERE clause". However, I am still lost. I ...
2
votes
2answers
216 views

HABTM Query help

I have a HABTM relationship between 'articles' and 'tags' Problem: I'm only looking for articles with BOTH the tag 'sports' and 'outdoors' but not articles with only one of these tags. I tried this: ...
2
votes
3answers
220 views

SQL Query problem

Consider two table.Employee and Project.Employee table has fields like eid,ename.Project table has fields like pid,pname.Now,since an employee can work on many projects and a project can be done by ...
2
votes
9answers
310 views

What is a SQL statement to select an item that has several attributes in an item/attribute list?

Say I have a table that has items and attributes listed like, frog green cat furry frog nice cat 4 legs frog 4 legs From the items column I want to select unique objects that have ...
2
votes
4answers
176 views

SQL question: excluding records

I have a database (NexusDB (supposedly SQL-92 compliant)) which contains and Item table, a Category table, and a many-to-many ItemCategory table, which is just a pair of keys. As you might expect, ...
2
votes
3answers
114 views

mysql: joining tables + finding records with an AND style query, rather than OR

Note: Using MySQL 4.0, which means no subqueries (at present). I have 2 tables: A "user_details" table A "skills" table, which has the user_id and a "skill_id", which maps to a predefined set of ...
1
vote
1answer
32 views

Django: performing a SQL match all in Django

I recently asked how to solve a simple SQL query. Turns out that there are many solutions. After some benchmarking i think this is the best one: SELECT DISTINCT Camera.* FROM Camera c INNER ...
1
vote
3answers
110 views

Can you solve this simple SQL query?

Suppose it's a website that sells photo cameras. Here are my entities (tables): Camera: A simple camera Feature: A feature like: 6mp, max resolution 1024x768, The thing is between cameras and ...
1
vote
1answer
53 views

Efficient way to get all articles with a set of tags in MySQL

I need an efficient way to select all articles with at least tags "Tag1" and "Tag2". This is the standart way with the following database schema: articles(id, title) article_tag(articleid, tagid) ...
1
vote
3answers
35 views

how to get records in the following scenario

I have a table like below : node_name id term_name ---------------------------------------------- test1 001 physics test1 001 ...
1
vote
3answers
66 views

vanilla SQl that select multiple values in single column

If I have a table with customer IDs in one column and time zones in another, is there a plain SQL statement that can select all customer IDs that have different time zone values? In other words, I ...
1
vote
3answers
459 views

Mysql select data using multiple conditions

id fid 20 53 23 53 53 53 Here I need to return true when my condition is something like .. where fid=53 and id in(20,23,53) and also I need to return false when....where fid=53 and id ...
1
vote
2answers
102 views

Select in a many-to-many relationship in MySQL

I have two tables in a MySQL database, Locations and Tags, and a third table LocationsTagsAssoc which associates the two tables and treats them as a many-to-many relationship. Table structure is as ...
1
vote
2answers
178 views

Get group key from bridge table

I'm developing an ETL process, and need a bridge table for a one-to-many relationship between a fact table and a dimension table (MySQL database). There is a limited number of combinations (some ...
1
vote
4answers
237 views

SQL Select Condition Question

I have a quick question about a select statement condition. I have the following table with the following items. What I need to get is the object id that matches both type id's. TypeId ObjectId 1 ...
1
vote
2answers
69 views

Force mySQL to join a table(to do a unoptimized query, that i need)

This is kinda weird. I have the next query: SELECT * , GROUP_CONCAT( x.tag SEPARATOR ',' ) AS tags FROM tag AS t, tag AS x, tag_message_rel AS r, message m INNER JOIN `user` AS u ON m.user_id = u.id ...
1
vote
2answers
92 views

How to do this query in Mysql?

I have 3 tables, message, subject and message_subject_rel. The idea is to have messages that can relate to a lot of subjects and then do a cross subject search. Lets say I have a message: Id: 1, ...
0
votes
2answers
39 views

How do I find groups of rows where all rows in each group have a specific column value

Sample data: ID1 ID2 Num Type --------------------- 1 1 1 'A' 1 1 2 'A' 1 2 3 'A' 1 2 4 'A' 2 1 1 'A' 2 2 1 'B' 3 1 1 ...
0
votes
2answers
20 views

Searching for items from char-separated text field in MySQL

I am building an application based on MySQL that allows users to search for some facilities. The facilities are stored in one TEXT column and they are represented as "|"-separated field. Here is the ...
0
votes
2answers
38 views

Select a product from filters

I have a problem with a query: I have 3 tables: products (id, name) settings (id, name) product_setting (product_id, setting_id) for example: I would like to select only the products you have ...
0
votes
3answers
49 views

is there a mysql clause for multiple and statements like IN?

is there an easy way to do multiple AND statments like the IN clause does for OR?
0
votes
3answers
289 views

mysql cross join not in?

Using a query like below you can fetch rows in which the color of the id is blue, purple, green, white, and black. SELECT t1.id, col FROM extra as e INNER JOIN your_table as t1 USING ( id ) CROSS ...
0
votes
4answers
141 views

Querying based on a set of Named Attributes/Values

I am working with a set of what is essentially Attribute/Value pairs (there's actually quite a bit more to this, but I'm simplifying for the sake of this question). Effectively you can think of the ...
-1
votes
1answer
33 views

mysql Query to find all that exist in a certain query?

Not looking for JUST an answer but to understand the answer as well please. Here is the three tables I am using: student(id,name,dept_name,tot_cred) takes(id, course_id, sec_id, semester, year, ...
-1
votes
2answers
90 views

Need help building MySQL SELECT query

So I have a table with columns: deck_id, card_name, quantity, board(irrelevent for this question) Each row has a deck id which is what I need, a card name, and amount of aforementioned cards. It ...