Hi,
I have one requirement where i am having 3-4 columns and one column is time stamp. The column Timestamp prints today date ,time, hours and seconds.
For example :
A B c Time_stamp
One 1 Hello 2021-04-15 15:31:41
Two 2 Hi 2021-04-15 15:31:41
Three 3 hoi 2021-04-15 15:31:41
After some time my column values changes and also the time
For example:
A B c Time_stamp
One 1 Hello 2021-04-15 15:36:41
Two 4 Hi 2021-04-15 15:36:41
Three 6 hoi 2021-04-15 15:36:41
I want to output as per the most current/latest time stamp with rest of the values in my final output.
Final output should be this:
A B c Time_stamp
One 1 Hello 2021-04-15 15:36:41
Two 4 Hi 2021-04-15 15:36:41
Three 6 hoi 2021-04-15 15:36:41
So every time it should print the latest values as per timestamp and override the previous values.
How should I achieve that?