I need to get the max date for each id in this table
ID Date
___ ____
1 2017-01-01
1 2017-03-01
2 2018-01-01
2 2013-07-03
2 2015-03-02
3 2011-11-11
So I'd want something like this returned
ID Date
___ ____
1 2017-03-01
2 2018-01-01
3 2011-11-11
Thanks in advance