I'm puzzle on how to write a store procedure to handle a conditional delete.
I have a table with 4 columns (ID, A, B, C) and the data in the table look like this:
1 Debbie Jones " "(empty string) " " 2 John Jones " " " " 3 James Jones " " " "
Columns A B C hold person name. How would i write a store procedure that will delete Debbie Jones row and not affect the other two rows with B and C column being empty string?