Cascade refers to a table-definition keyword in relational databases; it instructs the query engine to take a certain action (delete, update), when a primary key is modified, on tables linked by a foreign key.
Suppose i have two below table: CREATE TABLE post ( id bigint(20) NOT NULL AUTO_INCREMENT, text text , PRIMARY KEY (id) ) …
mysql foreign-keys cascade