Hello,
this is a bit hard to explain, have a file that has two fields order and operation. Each order can have one or more operations.I am trying to write a query that capture the orders that only have one operation. This is what my data looks like
so my ending query would look like this
Thanks in advance!!!
this is a bit hard to explain, have a file that has two fields order and operation. Each order can have one or more operations.I am trying to write a query that capture the orders that only have one operation. This is what my data looks like
Code:
order operation
O1234 1111
O1234 1120
O1234 1130
O1234 1160
O1234 1170
O3456 1111
O7890 1111
O7890 1120
O7890 1130
O6543 1111
so my ending query would look like this
Code:
order operation
O3456 1111
O6543 1111
Thanks in advance!!!