Josh Sherman

How to Delete from a Table with Foreign Key Constraints in MySQL

2024-9-22

Josh Sherman

I hate foreign keys. They are rarely implemented properly, often times failing to implement cascading deletes and updates. Sure, the concept is sound, and relationships are the first letter in RDBMS, I personally avoid using foreign keys as I find the potential for orphaned data to be way more manageable. While I don’t use foreign […]

The post How to Delete from a Table with Foreign Key Constraints in MySQL appeared first on Josh Sherman.