In SQL, is UPDATE always faster than DELETE+INSERT?
I have read for this thread that UPDATEs and more efficient than INSERTs and DELETEs I am contemplating to UPDATE a row to NULL values apart from the primary key ID instead of DELETING the row Then any new data can simply populate that row with the kept primary_key ID, what are the potential problems with this and is this a good approach to efficiency?