Answers for "cascade on update mean"

-1

on update cascade

CREATE TABLE child (
    id INT, 
    parent_id INT,
    INDEX par_ind (parent_id),
    FOREIGN KEY (parent_id) 
        REFERENCES parent(id)
        ON UPDATE CASCADE
) ENGINE=INNODB;
Posted by: Guest on July-27-2021

Code answers related to "cascade on update mean"

Browse Popular Code Answers by Language