How can we get all the records apart from the least date (Min Date)
Assume this is my Input
ID DATE
1 23/03/1990
1 24/04/2016
1 25/05/2016
1 23/03/1990
1 25/05/2018
Expected Output
ID DATE
1 24/04/2016
1 25/05/2016
1 25/05/2018
Can we perform this operation in a single line query?