• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Query Preparation

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

ID A B
1 200 500
2 100 300
3 555 666
4 666 555

5 541 256
6 454 45454
7 5656 122

I have a table with the sample data mentioned above.
I need to find the records where there is a circular reference between coloumns A and B.
For ex: record 3 & 4 refers to each other.
3 555 666
4 666 555

Can any one help me out how we can prepare this query.

Regards,
Sameer
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
select A,B from tbl t1 where exists (select 'X' from tbl t2 where t2.a = t1.b and t2.b = t1.a) ? Not sure.
 
Attractive, successful people love this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic