×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Try
And a.aentid < b.aentid
Sent via the Samsung GALAXY S® 5, an AT&T 4G LTE smartphone
-------- Original message --------
From: "Stone, Joel" <Joel.Stone@xxxxxxxxxx>
Date: 11/14/16 6:42 PM (GMT-05:00)
To: midrange-l@xxxxxxxxxxxx
Subject: SQL joining a table to itself - whats a good method to eliminate doubles
I want to join a table to itself to show all one-to-many records. Problem with code below is that each record appears twice.
What is a simple method to show record only once?
Thanks!
select distinct a.AHSCNBR ,
a.AENTID ,
b.AHSCNBR ,
b.AENTID
from bladdr a
join bladdr b on a.AHSCNBR = b.AHSCNBR
and a.AENTID <> b.AENTID
result:
0238559 A 0238559 B
0238559 B 0238559 A
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
As an Amazon Associate we earn from qualifying purchases.