EDIT: DBMS = Haddoop, Using Teradata SQL Asstistant
This is the original table. There are 20 location values (c1). Each Location has a set of aisles (c2). I want to get all the set of records from this table for Distinct locations and their set of distinct aisles based on max(tstamp).
Location | Aisle | Tstamp | qty | time |
---|---|---|---|---|
12 | 420 | 4/16/2021 12:22:01 PM | 999 | 999 |
23 | 220 | 4/16/2021 11:22:01 PM | 8888 | 222 |
31 | 310 | 4/16/2021 10:22:01 PM | 666 | 333 |
12 | 420 | 4/16/2021 12:22:01 AM | 666 | 444 |
31 | 120 | 4/16/2021 3:22:01 PM | 666 | 555 |
22 | 210 | 4/16/2021 01:22:01 PM | 666 | 666 |
I used this
SELECT*FROM store_control WHERE store_control.tstamp IN (SELECT MAX(tstamp) FROM store_control AS sql2)
RESULT:
Location | Aisle | Tstamp | qty | time |
---|---|---|---|---|
23 | 220 | 4/16/2021 11:22:01 PM | 8888 | 222 |
What I want is this:
Location | Aisle | Tstamp | qty | time |
---|---|---|---|---|
12 | 420 | 4/16/2021 12:22:01 PM | 999 | 999 |
22 | 210 | 4/16/2021 01:22:01 PM | 666 | 666 |
23 | 220 | 4/16/2021 11:22:01 PM | 8888 | 222 |
31 | 310 | 4/16/2021 10:22:01 PM | 666 | 333 |
31 | 120 | 4/16/2021 3:22:01 PM | 666 | 555 |