I'm trying to find out which orders have been made more than once. This will help me identify the most common orders. Here is my orders table with some dummy data;
Table name: Orders
OrderID | ProductID | Quantity 
-------- | ----------| --------
1        | 3         | 6       |
1        | 6         | 3       |
2        | 5         | 1       |
3        | 10        | 9       |
3        | 9         | 1       |
3        | 3         | 2       |
4        | 6         | 3       |
4        | 3         | 6       |
As you can see orders 1 and 4 are the same order I need a query to help me identify these orders.
 
    