On 15/05/2014 10:46, Dyre Tjeldvoll wrote:
Could you not doDELETE FROM FOO WHERE A = ? AND ( B = ? OR B IS NULL )
Unfortunately not. If B is not null, it would also delete the corresponding A where B is null. For example:
A = X, B = Y A = X, B = NULLYour solution would delete both, but I want to delete ONLY the row with the matching value for B.
But thanks for trying! -- John English
