I have two columns
OrderId OrderStatus
120 1
120 2
121 1
123 1
123 2
I want to retrieve only the row with OrderId 121 because it has had an OrderStatus of 1 but it does not have an OrderStatus of 2.
|
I have two columns
I want to retrieve only the row with OrderId 121 because it has had an OrderStatus of 1 but it does not have an OrderStatus of 2. |
||||
|
|
|
Because you don't mention there being a '
to mean
With SQL 2005 and later,
|
|||
|
|
|
You can use a self-join, searching for OrderStatus = 1 from the left and missed join with OrderStatus = 2 from the right:
|
|||
|
|
|
If your order statuses are only 1 and 2, and the orders must be a status of 1 at some point before becoming a status of 2, you can search for the orders with a maximum order status value of 1:
Demo: http://www.sqlize.com/2k3C2SqMH2 Or if it's not quite that simple, we can be more explicit about not allowing an orderstatus of 2 to ever have happened by using a
|
||||
|
|