id   date         amount      documentNo     paperID
1    2015/10/15   500         1234             34
1    2015/10/15   100         1332             33
2    2015/10/13   200         1302             21
2    2015/10/13   400         1332             33
3    2015/11/23   500         1332             43
I should get the output as:
id        date      amount       documentNo     paperID
1       2015/10/15   500         1234             34
2       2015/10/13   200         1302             21
3       2015/11/23   500         1332             43
Please suggest a simple select query to fetch only one row without partition by. Note: the date remain same for a particular id.
 
     
     
    