Ok, this is probably something easy but how would you delete data only from a certain field rather than the whole row of data?
You would just set it to a NULL value
UPDATE table SET field=NULL WHERE id='3';