Hello, I have a table( about 11,000 Entries) with insurance info. It can some times happen I will have entries like so:
Id Payor Position Insurance
aaaa 1 ZRB
aaaa 2 MA
aaaa 3 MA
I need to delete the payor position 3, have tryed
DELETE * FROM tblInsuranceRehab WHERE (CustomerID and PayorPosition = 2 and insurance) = (CustomerID and PayorPosition = 3 and insurance)
Dose not work delete's every thing but payor position =1, any Ideas on how to progress, thanks
Id Payor Position Insurance
aaaa 1 ZRB
aaaa 2 MA
aaaa 3 MA
I need to delete the payor position 3, have tryed
DELETE * FROM tblInsuranceRehab WHERE (CustomerID and PayorPosition = 2 and insurance) = (CustomerID and PayorPosition = 3 and insurance)
Dose not work delete's every thing but payor position =1, any Ideas on how to progress, thanks