Select order_id from Table1
minus
Select order_id from Table2;
if you want more fields, you may wish to make this a sub-query
Select * from table1 where order_id in
(Select order_id from Table1
minus
Select order_id from Table2) I tried to remain child-like, all I acheived was childish.