SQL: Soft Deleting and Unique Constraint
Introduction
There are two ways to delete data in a database: soft delete and hard delete. Soft delete is a process where the data is not permanently deleted but rather marked as deleted by adding a column like a deleted_at timestamp. This allows the...
halimsamy.com4 min read
Michael J. Stallinger
Software developer by profession and passion.
Great article, thank you!