1
A table records the movement of items by item code, date and time of movement.
So the presentation is as follows:
CD_Item | DT_Mov
  15      10/04/2018 08:52:36
  15      21/05/2018 09:32:10
  15      20/05/2018 14:24:08
  15      10/04/2018 08:52:36
  08      26/05/2018 09:32:10
  08      27/05/2018 14:24:08
  69      16/05/2018 09:32:10
  69      20/05/2018 14:24:08
I want to make a select to pick up all the items, but let it return me only to your last move of each code.
Upshot:
CD_Item | DT_Mov
   15     21/05/2018 09:32:10
   08     27/05/2018 14:24:08
   69     20/05/2018 14:24:08
The bank is Oracle.
I researched other questions of the kind suggested by the forum itself, but they did not give me a solution.
It worked, I was grouping with the date too and I never went...
– Robson Junior