Mysql – Is an auto inc primary key needed here to avoid fragmentation?
I have a table such as follows: CREATE TABLE Associations ( obj_id int unsigned NOT NULL, attr_id int unsigned NOT NULL, assignment Double NOT NULL PRIMARY KEY (`obj_id`, `attr_id`), ); Now the insertion order for the rows is/will be random.…