SQL: Soft Deleting and Unique Constraint
Feb 27, 2023 · 4 min read · 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...
MYMichael and 1 more commented

