I'm trying to show the date where the last version changed - for example in customer ACA.. the version changed in 12/5/2022
BTW, I have more than one customers.
You could do something like:
SELECT MIN(date)
, name
, last_version
FROM Datatable
GROUP BY name, last_version