Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Experts,
Can anyone please help me to get the required result. I have data :
From this data i want to get the IDs where the Time is increasing and seqNO is decreasing.
Output should be
Please help!
Thankyou in advance
Hi, you can try something like this:
LOAD ID, Time, SeqNO FROM ...sample... WHERE SeqNO<previous(SeqNO) and ID=Previous(ID) ORDER by ID, Time;