I am trying to pull Part ID's and Transaction ID's out of the database where there was a receipt and a return receipt of the same Part ID on the same day.
All the information is on one table, Inventory_Trans
Class "R" (for receipt)
Type "I" (in transaction)
Type "O" (out transaction)
Ex. Type "I" and Class "R" is a receipt
Type "O" and Class "R" is a return
For the select statement I have...
Select Part_ID, Transaction_ID from Inventory_Trans
I need help with the Where clause.
Thanks for any help.
Hillary
All the information is on one table, Inventory_Trans
Class "R" (for receipt)
Type "I" (in transaction)
Type "O" (out transaction)
Ex. Type "I" and Class "R" is a receipt
Type "O" and Class "R" is a return
For the select statement I have...
Select Part_ID, Transaction_ID from Inventory_Trans
I need help with the Where clause.
Thanks for any help.
Hillary