UPDATE yourtable
SET location = 'B3'
WHERE primary-key = 1231421
AND location = 'B2'
If someone's already moved it out of B2, then nothing will happen. This seems better than simply blindly incrementing the location; the user wanted it to go from B2 to B3, not push it one forward.
Alright, given the new row requirement:
INSERT INTO yourtable ( item, location ) VALUES( 123, 'B3' )
WHERE NOT EXISTS( SELECT * FROM yourtable WHERE item = 123 AND location = B3 )
let the database do the work for you.
