in this scheme
id uid content
1 1 A
2 1 B
3 1 C
4 1 D
5 1 E
If the User decided that he doesn't need the rows with id = 3, 4, 5 Is it better to make him set their content to NULL or just delete the row?
This process occur many time And he maybe use the NULL slots again. Do I still use UPDATE and set it to NULL in case he will change it in the future? Or just DELETE the entire row?
The question is like: is it better to
DELETE the Row? INSERT| -> DELETE -> INSERT .. DELETE -> INSERT
or
UPDATE the Row? INSERT| -> UPDATE to NULL -> UPDATE to value .. UPDATE to NULL -> UPDATE to value