HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlModerate

What does 'ibfk' stand for in MySQL?

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
ibfkstandwhatmysqlfordoes

Problem

If I create a foreign key constraint for table 'photos' in phpmyadmin, I later see that the constraint is named 'photos_ibfk_1', and the next constraint is called 'photos_ibfk_2', etc. From this I have gathered that [tablename]_ibfk_constraintIndex is the convention for DB constraints in MySQL. Is this correct? What does IBFK stand for?

Solution

Although foreign key names can be anything, it's actually a good practice to follow the convention of putting the table name first.

The most important reason for this is that foreign key names must be unique within a database (contrarily to index names, which must only be unique within each table). So, by following this convention, foreign key names only have to be unique within each table.

Personally, I use the convention [table_name]_fk_[field_name].

In order to name your foreign keys, you will have to explicitly spell out the constraint on the table, instead of just the foreign key.

Simple method (automatic naming, will result in [table_name]_ibfk_[index]):

ALTER TABLE `[table_name]`
  ADD FOREIGN KEY (`[field_name]`)
    REFERENCES `[foreign_table_name]`(`[foreign_field_name]`);


Explicit method (will result in [table_name]_fk_[field_name]):

ALTER TABLE `[table_name]`
  ADD CONSTRAINT `[table_name]_fk_[field_name]`
    FOREIGN KEY (`[field_name]`)
    REFERENCES `[foreign_table_name]`(`[foreign_field_name]`);

Code Snippets

ALTER TABLE `[table_name]`
  ADD FOREIGN KEY (`[field_name]`)
    REFERENCES `[foreign_table_name]`(`[foreign_field_name]`);
ALTER TABLE `[table_name]`
  ADD CONSTRAINT `[table_name]_fk_[field_name]`
    FOREIGN KEY (`[field_name]`)
    REFERENCES `[foreign_table_name]`(`[foreign_field_name]`);

Context

StackExchange Database Administrators Q#15530, answer score: 11

Revisions (0)

No revisions yet.