Posts by Paulo Roberto Rodrigues • 1 point
1 post
-
-1
votes4
answers18077
viewsA: How to organize auto-increment numbering of a column Id of a table in Mysql?
Relationship with ON UPDATE CASCADE relatives keys will be changed also: CREATE TABLE child ( id INT, parent_id INT, INDEX par_ind (parent_id), FOREIGN KEY (parent_id) REFERENCES parent(id) ON…