up vote 0 down vote favorite
share [g+] share [fb]

I am new to SQL and relational DBMS. I want to retrieve records from a relational database if they satisfy 3 given properties.

For example, if there is a table containing info about solids:

table_solid : |s_id|s_name|description|
table_width : |w_id|w_name|
table_height: |h_id|h_name|
table_length: |l_id|l_name|

where *_id are all primary keys.

I have 3 more tables for relating these tables with Foreign Keys.

table_s_h: |s_id|h_id|
table_s_w: |s_id|w_id|
table_s_l: |s_id|l_id|

Would you please explain how do I join these.

Thanks in advance.

                 --------- table_length
table_SOLID ----
                ----------- table_width

                ------------table_height

table_length contains valid lengths that solid can take (and similarly with other tables).

link|improve this question

What do those tables describe? Their structure and the names of their fields are not very clear. – Milen A. Radev Feb 19 '09 at 12:49
I think that you would do better to use one table with 5 or 6 columns. The 5 columns would be 's_name', 'description', 'w_name', 'l_name' and 'h_name'; the sixth might be an ID for the object. You seem to have over-normalized and are running into problems as a result. – Jonathan Leffler Mar 2 '09 at 7:48
feedback

3 Answers

up vote 2 down vote accepted

From a single table:

Select * 
FROM TABLE_NAME
WHERE table_width = SOME_VALUE3
AND table_height= SOME_VALUE2
AND table_length = SOME_VALUE3

Is that what you are looking for? Or are you trying to query multiple tables? If so try this:

Select * 
FROM TABLE_SOLID solid
Inner join table_width width on solid.w_id = width.w_id
inner join table_height height on solid.h_id = height.h_id
inner join table_length length on solid.l_id = length.l_id

This link may be of use to you http://dev.mysql.com/doc/refman/5.0/en/join.html

link|improve this answer
Yes, I want to query multiple tables. – Pratik Deoghare Feb 19 '09 at 12:51
feedback

Your DB schema is not clear to me.

Are these four different tables? If yes, how are they linked up, ie how do you retrieve width, height, length for a given solid?

Or are those four columns in 1 table, identified by s_id?

Please clarify.

link|improve this answer
feedback

I hope I've understood your schema.

SELECT
    s.*
FROM
    table_solid AS s
WHERE
    s.s_id IN
(
(SELECT s_id FROM table_s_h INNER JOIN table_height USING (h_id) WHERE h_name = H)
INTERSECT
(SELECT s_id FROM table_s_w INNER JOIN table_width USING (w_id) WHERE w_name = W)
INTERSECT
(SELECT s_id FROM table_s_l INNER JOIN table_length USING (l_id) WHERE l_name = L)
);

OT: I don't know if that will work in MySQL and I don't care - I've added "mysql" tag to the question and you've removed it.

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.