ID |Number|Qty|OrderNumber|Date
456-98A|746-96|0.1|00 |2015-01-01
456-98A|746-96|0.1|00 |2015-01-01
456-98A|746-96|0.1|00 |2015-01-01
456-98A|746-96|0.1|00 |2015-01-01
456-98A|321-96|0.3|05 |2015-01-01
456-98A|321-96|0.3|05 |2015-01-01
the above table in sql gives me multiple rows of the same ID.How do i filter this data so that if the Number and orderNumber is the same it must give me only one row for that ID instead of multiple values.for eg the expected outcome would be
ID |Number|Qty|OrderNumber|Date
456-98A|746-96|0.1|00 |2015-01-01
456-98A|321-96|0.3|05 |2015-01-01