Q
QB
I have 2 tables
1. Clients
2. Orders
In the orders we enter an order id (ie: 2100, 2101, 2102). For instance we
have
tbl_Orders
C_ID O_ID
1 1465
1 2100
1 2101
1 2201
2 2100
2 2101
3 1506
3 1709
4 2201
I need to build a list that list all the C_ID where the O_ID = 2100 OR 2101
but that the C_ID did not indlude O_ID < 2100.
For the example above:
2
4
How would I go about this?
QB
1. Clients
2. Orders
In the orders we enter an order id (ie: 2100, 2101, 2102). For instance we
have
tbl_Orders
C_ID O_ID
1 1465
1 2100
1 2101
1 2201
2 2100
2 2101
3 1506
3 1709
4 2201
I need to build a list that list all the C_ID where the O_ID = 2100 OR 2101
but that the C_ID did not indlude O_ID < 2100.
For the example above:
2
4
How would I go about this?
QB