Data Modification
- π§ INSERT Patterns β Single row, multi-row, INSERTβ¦SELECT, SELECT INTO.
- π§ UPDATE with JOIN & OUTPUT β Join in UPDATE; capture changes with OUTPUT.
- π§ DELETE Patterns β Delete with WHERE/JOIN; soft delete approaches.
- π§ MERGE (safe upserts) β Upserts with MERGE and caveats.
- π§ Identity & Sequences β IDENTITY columns and SQL Server SEQUENCE.