× 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.



Michael,

DISTINCT looks at all the fields, not just XMMAIL. If you had records in
posmstp with the same XMMAIL and XMSmn1 values, those would generate one
record.

Try this

INSERT INTO NEWSYS/EMLCMP (EMLADDR, EMEMP#)
SELECT XMMAIL, MIN(XMSmn1)
FROM posmstp
WHERE xmmail <> ' '
GROUP BY XMMAIL

That will pick the smallest value of XMSmn1 to insert, not necessarily the
first encountered.

Hope this helps!

Richard



-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx]On Behalf Of Michael Ryan
Sent: Tuesday, October 03, 2006 2:07 PM
To: Midrange Systems Technical Discussion
Subject: Insert First Row


I thought I could do this, but it's not working for me. Here's my SQL
statement:

INSERT INTO NEWSYS/EMLCMP (EMLADDR, EMEMP#) SELECT DISTINCT XMMAIL,
XMSmn1 FROM posmstp WHERE xmmail <> ' '

I have records in posmstp like this:

XMMAIL     XMSMN1
A_Value      501
B_Value      123
A_Value      789
C_Value      555

I want the resultant table to be:

XMMAIL     XMSMN1
A_Value      501
B_Value      123
C_Value      555

In other words, I just want the values from the first XMMAIL record I
encounter. I though the DISTINCT would do that. What do I need to do?

TIA

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.407 / Virus Database: 268.12.12/461 - Release Date: 10/2/2006



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.