What does 'ibfk' stand for in MySQL?

innodb foreign key. It's just short hand naming convention. You could call it asdfqwerty and the name would still work.


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]`);