Why InnoDB adds index for foreign key column - mysql

MySQL auto adding index when adding foreign key to a column In MySQL with innoDB engine. Primary key is enough for search the rows, how affect the performance by adding index for foreign key column.
Thanks in Advance.

MySQL docs state the reasoning clearly behind this here
MySQL requires indexes on foreign keys and referenced keys so that
foreign key checks can be fast and not require a table scan. In the
referencing table, there must be an index where the foreign key
columns are listed as the first columns in the same order. Such an
index is created on the referencing table automatically if it does not
exist.
There are many queries typically joins which require rows to match on the basis of foreign keys and database has to find those rows. The index typically helps this to do faster.

If you are creating an foreign key means this column will be used to join data with any other tables referenced column, so it is understood that index will be required on this column for better join.
Due to this reason this feature is in build in mysql foreign key concept.

Related

How to guarantee uniqueness of a record using a complex key?

There is a simple table, with 3-rd foreign keys. How to make it impossible to re-record with the same values for these three keys? Create a complex key based on them?
And how to do it in the Workbench environment, just specify additionally each foreign key as a primary key?
If i get your question, you are looking to enforce uniqueness in the columns (user_id,position_id,organization_id).
Assuming that at least one of the columns is (not null). If you were to create a unique index on the three columns it should work.
CREATE UNIQUE INDEX index_name
ON Employers(user_id,position_id,organization_id);

How does MySQL foreign key work?(Innodb)

I am using MySQL foreign key in Innodb, I wonder how Mysql enforce foreign key constraint when we insert into the child table. Innodb seems to build index on the foreign key column automatically, How is this feature useful in enforcing the foreign key constraint?
In sum, for normal index, we can create index file, which use the B+ tree structure. What structure is used for a foreign key?
It's an ordinary INDEX. And, in particular, a BTree.
SHOW CREATE TABLE will demonstrate that it is such (and has a fabricated name for the index).
Q: How is this feature [the index on the foreign key column(s) in the child table] useful in enforcing the foreign key constraint?
A: It's useful when an attempt is made to delete a row in the parent table. Or when an attempt is made to update a value in a column that is referenced by a foreign key.
For example, consider an attempt to delete a row in the parent table. The foreign key is a constraint that says: if there are any rows in child table that reference the row in parent table, the delete operation will not succeed and will return an error. (We're assuming for the sake of this example that the foreign key constraint is declared as ON DELETE RESTRICT.)
When a row is deleted from the parent, the child table needs to be checked. Think of performing that check in terms of running a query on the child table, to find out: are there any rows in the child table that reference the row in the parent table. (That is, are they are any rows that have a particular value in the foreign key column?)
If the database wasn't enforcing the constraint, and we were doing the check in the application instead, we would need to run a query something like this:
SELECT 1
FROM child_table
WHERE foreign_key_col = :referenced_key_value
LIMIT 1
And that query would benefit from a suitable index, and index with foreign_key_col as the leading column. Using an index, MySQL can quickly eliminate vast swaths of rows that it knows can't have that value, narrowing in very quickly to the block(s) that would contain a matching row.
For non-trivial sets, using an appropriate index to locate a row is much more efficient than performing a full scan operation, examining every row in the table, to verify there are no rows that match.
In this case, the ideal index ... ON child_table (foreign_key_column), ...)`
In addition to that performance benefit, the database can also use the index to prevent other sessions from inserting a row into child_table (rows that would violate the foreign key constraint), using a lock mechanism. Without an index, the database would need to lock the entire child_table. And that would kill concurrency.
(This is an overly simplified explanation. The actual mechanics are more involved. But this should explain why an index on foreign key columns is "useful". To define a foreign key constraint, InnoDB requires that a suitable index be defined. And if one doesn't exist, InnoDB will create one.
Q: What structure is used for a foreign key?
The same structure used for any other column in the table, or any other index on the table.
A FOREIGN KEY is a constraint. There's nothing "special" about a column used in a foreign key constraint. There is a requirement that the column(s) used in a foreign key constraint must be the leading columns in an index. As explained in the answer to your first question.

Disable auto indexing of mysql

I understand MySQL is automatically placing an index on every table's primary and foreign keys.
However, I would like to personally create my own indices on the foreign keys as I want to execute a query with hibernate showing the difference in time when I execute it with and without indices.
Is there any option in MySQL Workbench to disable it's auto indexing feature?
No you cannot disable the auto index creation of index on tables. This is a inbuilt feature which is added in MySql.
However if you want you can drop the index like this:
DROP INDEX index_name ON tbl_name
and then create it again.
From InnoDB and FOREIGN KEY Constraints
"InnoDB requires indexes on foreign keys and referenced keys so that
foreign key checks can be fast and not require a table scan. In the
referencing table, there must be an index where the foreign key
columns are listed as the first columns in the same order. Such an
index is created on the referencing table automatically if it does not
exist. (This is in contrast to some older versions, in which indexes
had to be created explicitly or the creation of foreign key
constraints would fail.) index_name, if given, is used as described
previously."
No, these indexes are always created. Otherwise, every UPDATE or INSERT that modifies these columns would have to perform a full table scan, to ensure that the primary key is unique and the foreign key has a valid reference.
Regarding foreign keys, the documentation says:
MySQL requires indexes on foreign keys and referenced keys so that foreign key checks can be fast and not require a table scan. In the referencing table, there must be an index where the foreign key columns are listed as the first columns in the same order. Such an index is created on the referencing table automatically if it does not exist.

Is there a performance benefit to creating a multiple index on a primary key + foreign key?

If I have a table that has a primary key and a foreign key, and searches are frequently done with queries that include both (...WHERE primary=n AND foreign=x), is there any performance benefit to making a multiple index in MySQL using the two keys?
I understand that they are both indexes already, but I am uncertain if the foreign key is still seen as an index when included in another table. For example, would MySQL go to the primary key, and then compare all values of the foreign key until the right one is found, or does it already know where it is because the foreign key is also an index?
Update: I am using InnoDB tables.
For equality comparisons, you cannot get an improvement over the primary key index (because at that point, there is at most just one row that can match).
The access path would be:
look at the primary key index for primary = n
get the single matching row from the table
check any other conditions using the row in the table
A composite index might make some sense if you have a range scan on the primary key and want to narrow that down by the other column.

Does MySQL index foreign key columns automatically?

Does MySQL index foreign key columns automatically?
Yes, but only on innodb. Innodb is currently the only shipped table format that has foreign keys implemented.
Apparently an index is created automatically as specified in the link robert has posted.
InnoDB requires indexes on foreign keys and referenced keys so that foreign key checks can be fast and not require a table scan. In the referencing table, there must be an index where the foreign key columns are listed as the first columns in the same order. Such an index is created on the referencing table automatically if it does not exist. (This is in contrast to some older versions, in which indexes had to be created explicitly or the creation of foreign key constraints would fail.) index_name, if given, is used as described previously.
InnoDB and FOREIGN KEY Constraints
For those who are looking for quote from 5.7 docs:
MySQL requires indexes on foreign keys and referenced keys so that
foreign key checks can be fast and not require a table scan. In the
referencing table, there must be an index where the foreign key
columns are listed as the first columns in the same order. Such an
index is created on the referencing table automatically if it does not
exist. This index might be silently dropped later, if you create
another index that can be used to enforce the foreign key constraint.
index_name, if given, is used as described previously.
You don't get the index automatically if you do an ALTER TABLE (instead of CREATE TABLE), at least according to the docs (the link is for 5.1 but it's the same for 5.5):
[...] When you add a foreign key constraint to a table using ALTER TABLE, remember to create the required indexes first.
As stated it does for InnoDB. At first I thought it was strange that many other (in particular MS SQL and DB2) doesn't. TableSpace scans are only better than index scans when there are very few table rows - so for the vast majority of cases a foreign key would want to be indexed. Then it kind of hit me - this doesn't necessarily mean it has to be a stand alone (one column) index - where it is in MySQL's automatic FK Index. So, may be that is the reason MS SQL, DB2 (Oracle I'm not sure on) etc leave it up to the DBA; after all multiple indexes on large tables can cause issues with performance and space.
Yes, Innodb provide this. You can put a foreign key name after FOREIGN KEY clause or leave it to let MySQL to create a name for you. MySQL automatically creates an index with the foreign_key_name name.
CONSTRAINT constraint_name
FOREIGN KEY foreign_key_name (columns)
REFERENCES parent_table(columns)
ON DELETE action
ON UPDATE action
It's not possible to get index key automatically use
ALTER TABLE (NAME OF THE TABLE) ADD INDEX (FOREIGN KEY)
Name of the table which you have created for example photographs and FOREIGN KEY for example photograph_id. The code should be like this
ALTER TABLE photographs ADD INDEX (photograph_id);