Lets say the field that holds the value 123 is called CODE
The field that holds the date is called - well - DATE
And the file is called YOURFILE in YOURLIB
You need to create a CTE and use distinct
With DISTINCTFILE as
(select DISTINCT CODE, DATE from YOURLIB.YOURFILE)
Select CODE, Count from DISTINCTFILE
Group by CODE
Order by CODE
Or something like that
You can run
select DISTINCT CODE, DATE from YOURLIB.YOURFILE
By itself to see what happens
Alan Shore
Solutions Architect
IT Supply Chain Execution
[NHScsignaturelogo]
60 Orville Drive
Bohemia, NY 11716
Phone [O] : (631) 200-5019
Phone [C] : (631) 880-8640
E-mail : ASHORE@xxxxxxxxxxxxxxxxxxxx
'If you're going through hell, keep going.'
Winston Churchill
From: RPG400-L [mailto:rpg400-l-bounces@xxxxxxxxxxxxxxxxxx] On Behalf Of eye series
Sent: Friday, April 8, 2022 10:09 AM
To: RPG programming on the IBM i (AS/400 and iSeries) <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: [EXTERNAL] sql question
i have the following data
123 01/01/2021
123 01/01/2021
123 01/01/2021
123 02/01/2021
123 02/01/2021
123 03/01/2021
123 03/01/2021
123 04/01/2021
i would like following result
123 4
where 4 is the number of days count regardless of how many per day.
Suggestions?
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx<mailto:RPG400-L@xxxxxxxxxxxxxxxxxx>
To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l<
https://lists.midrange.com/mailman/listinfo/rpg400-l>
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx<mailto:RPG400-L-request@xxxxxxxxxxxxxxxxxx>
Before posting, please take a moment to review the archives
at
https://archive.midrange.com/rpg400-l<
https://archive.midrange.com/rpg400-l>.
Please contact support@xxxxxxxxxxxxxxxxxxxx<mailto:support@xxxxxxxxxxxxxxxxxxxx> for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com<
https://amazon.midrange.com>
As an Amazon Associate we earn from qualifying purchases.