Jump to content

query from first table, using second table relation


biofly

Recommended Posts

Hi Friends,

 

I have two tables, second table has relation

 

Table1:

----------

Id

----------

A01

A02

A03

A04

A05

 

Table2

-----------

sid    pid

----------

A01  A01

A02  A01

 

 

If I use Query table1.id = 'A01', I need to have A01 and A02.

If I use Query table1.id = 'A02', I need to have A01 and A02.

but If I use Query table1.id = 'A03' , need to have only A03

 

It means A01 and A02 are duplicates. I want to extract duplicates.

 

Can you help me to get SQL query?

 

Thanks,

Ashok

Link to comment
Share on other sites

If I use Query table1.id = 'A01', I need to have A01 and A02.

If I use Query table1.id = 'A02', I need to have A01 and A02.

but If I use Query table1.id = 'A03' , need to have only A03

 

It means A01 and A02 are duplicates. I want to extract duplicates.

I don't understand.

Link to comment
Share on other sites

Thanks for the quick response.

 

If I use....

SELECT table1.id FROM table1,table2 WHERE table1.id = 'A01'; (this not a complete SQL query)

The answer should be A01 and A02 from Table1

 

If I use....

SELECT table1.id FROM table1 WHERE table1.id = 'A02';

The answer should be A01 and A02 from Table1

 

But If I use....

SELECT table1.id FROM table1 WHERE table1.id = 'A03';

The answer should be A03 only from Table1 because in my second table, table2 has two columns, I have the following table relation...

 

 

Table2

-----------

sid    pid

----------

A01  A01

A02  A01

 

 

I am new to SQL, I will appreciate your help.

 

Thanks again

Ashok

Link to comment
Share on other sites

I am using the following query ...

 

 

SELECT * FROM table1.id WHERE table1.id IN

(SELECT table2.sid FROM table1,table2 WHERE table1.id='A01'  AND (table2.pid = table1.id OR table2.Sid = table1.id));

 

 

 

This is working fine for my first 2 queries ie

 

If I use....

SELECT table1.id FROM table1,table2 WHERE table1.id = 'A01'; (this not a complete SQL query)

The answer should be A01 and A02 from Table1

 

If I use....

SELECT table1.id FROM table1 WHERE table1.id = 'A02';

The answer should be A01 and A02 from Table1

 

 

but for third one is not working..ie

SELECT table1.id FROM table1 WHERE table1.id = 'A03';

The answer should be A03 only from Table1

 

Link to comment
Share on other sites

SELECT * FROM table1.id WHERE table1.id IN

(SELECT table2.sid FROM table1,table2 WHERE table1.id='A01'  AND (table2.pid = table1.id OR table2.Sid = table1.id));

 

 

In the above query if I use

....WHERE table1.id='A01'... the output is 'A01' and 'A02', (this is OK for me, I also need the following output also)

 

If I use   

....WHERE table1.id='A03'...No output, In this case I need to have 'A03' output.

 

Thanks

Ashok

Link to comment
Share on other sites

This is working correctly, but I want to use only query input ie  ......WHERE  table1.id = 'A01' .....

 

SELECT  table1.id

FROM    table1

WHERE  table1.id = 'A01'

UNION

SELECT  table2.pid

FROM    table2

WHERE  table2.pid = 'A01'

UNION

SELECT  table2.sid

FROM    table2

WHERE  table2.sid = 'A01'

 

Link to comment
Share on other sites

can u pls show the full table structure and required output format 

Actually ,that's not helpful at all.

 

The problem is that I don't know what this means:

If I use   

....WHERE table1.id='A03'...No output, In this case I need to have 'A03' output.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.