Error on rename of errno 150

Дата: 2.12.2016

Дата: 2.12.2016

Автор: Василий Лукьянчиков , vl (at) sqlinfo (dot) ru

Функционирование внешних ключей в MySQL имеет много нюансов и ограничений из-за чего существует немало возможностей получить ошибку при работе с ними. Одна из проблем состоит в том, что сообщения об ошибках содержат мало полезной информации и не указывают причину возникновения ошибки. В данной статье дается объяснение как получить дополнительную информацию об ошибке и приведен полный список причин возникновения ошибок внешних ключей. Каждая причина снабжена уникальным буквенно-цифровым кодом (А4, Б1, ..), использующимся в сводной таблице в конце статьи, которая поможет вам быстро диагностировать проблему.

Внешний ключ — это поле (или набор полей) в таблице, называемой дочерней, которое ссылается на поле (или набор полей) в таблице, называемой родительской. Дочерняя и родительская таблицы могут совпадать, т.е. таблица будет ссылаться на саму себя. Внешние ключи позволяют связать записи в двух таблицах по определенным полям так, что при обновлении поля в родительской автоматически происходит изменение записи в дочерней таблице.

В MySQL внешние ключи не реализованы на уровне сервера, их поддержка зависит от используемого хранилища данных. Содержание статьи справедливо для InnoDB (в том числе и для XtraDB).

Как получить больше данных об ошибке

После получения ошибки выполните SHOW ENGINE INNODB STATUS и смотрите содержимое секции LATEST FOREIGN KEY ERROR. Этот способ имеет следующие недостатки:

  • требует привилегии SUPER
  • содержит информацию о последней ошибке, связанной с внешними ключами, из-за чего нужно выполнять SHOW ENGINE INNODB STATUS сразу после возникновения ошибки, что не всегда удобно/возможно
  • используются внутренние имена таблиц (например, ‘test.#sql-d88_b’), что затрудняет диагностику
  • порой содержит мало полезной информации или таковая вообще отсутствует.

Альтернатива: использовать MariaDB версий больше 5.5.45 и 10.0.21, в которых сообщения об ошибках значительно улучшены и указывают причину возникновения ошибки.

Errno 150

Если в сообщении об ошибке содержится errno 150 (или errno 121), значит парсер MySQL не смог распознать ошибку и передал команду (create/alter) на выполнение в InnoDB. В этом разделе перечислены ситуации, приводящие к ошибкам, содержащим errno 150.

А1. Нет индекса в родительской таблице. Набор полей, на которые ссылается дочерняя таблица, должен быть проиндексирован (или являться левой частью другого индекса). Порядок полей в индексе должен быть таким же как в определении внешнего ключа. Сюда же относится случай отсутствия нужной колонки в родительской таблице (нет колонки, нет и индекса).

Неочевидный момент: на колонке родительской таблицы есть индекс — полнотекстовый (fulltext). Но внешний ключ всё равно не создается и сервер ругается на отсутствие индекса. Это происходит потому, что индекс должен быть обычным (btree).

Другой неочевидный момент: на колонке родительской таблицы есть индекс — префиксный. Но внешний ключ всё равно не создается и сервер ругается на отсутствие индекса. Это происходит потому, что индекс должен быть определен на всей длине колонки.

Строго говоря, поля в дочерней таблице тоже должны быть проиндексированы, но если нет подходящего индекса, MySQL автоматически его создаст при добавлении внешнего ключа (в совсем уж древних версиях требовалось предварительное создание индекса).

Примеры

create table t1 (a int, b int, index(a)) engine=innodb;

create table t2 (a int, foreign key (a) references t1(a), foreign key (a) references t1(b)) engine=innodb;
ERROR 1005 (HY000): Cannot create table ‘test.t2’ (errno: 150)

SHOW ENGINE INNODB STATUS;
————————
LATEST FOREIGN KEY ERROR
————————
2016-11-16 06:37:39 0x14c1c Error in foreign key constraint of table test/t2:
foreign key (a) references t1(b)) engine=innodb:
Cannot find an index in the referenced table where the
referenced columns appear as the first columns, or column types
in the table and the referenced table do not match for constraint.
Note that the internal storage type of ENUM and SET changed in
tables created with >= InnoDB-4.1.12, and such columns in old tables
cannot be referenced by such columns in new tables.
Please refer to http://dev.mysql.com/doc/refman/5.7/en/innodb-foreign-key-constr
aints.html for correct foreign key definition.
————

— при использовании оператора ALTER ошибка и секция
— LATEST FOREIGN KEY ERROR будут содержать внутреннее имя таблицы test.#sql-a64_1

create table t2 (a int) engine=innodb;
alter table t2 add foreign key (a) references t1(a), add foreign key (a) references t1(b);
ERROR 1005 (HY000): Cannot create table ‘test.#sql-a64_1’ (errno: 150)

— в новых версиях парсер MySQL определяет некорректность
— конструкции и возвращает другую ошибку (без errno 150)

alter table t2 add foreign key (a) references t1(a), add foreign key (a) references t1(b);
ERROR 1215 (HY000): Cannot add foreign key constraint

— аналогично и для оператора CREATE

drop table t2;
create table t2 (a int, foreign key (a) references t1(a), foreign key (a) references t1(b)) engine=innodb;
ERROR 1215 (HY000): Cannot add foreign key constraint

Обратите внимание, если внешний ключ уже существует и в результате изменений (alter table) возникает ситуация отсутствия индекса в родительской таблице, то код ошибки будет 1025:

create table t1 (a int, b int, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;

alter table t1 drop a;
ERROR 1025 (HY000): Error on rename of ‘.test#sql-d6c_5′ to ‘.testt1′ (errno: 150)

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
161220  7:14:25 Error in foreign key constraint of table test/t2:
there is no index in referenced table which would contain
the columns as the first columns, or the data types in the
referenced table do not match the ones in table. Constraint:
,
  CONSTRAINT «t2_ibfk_1» FOREIGN KEY («a») REFERENCES «t1» («a»)
The index in the foreign key in table is «a»
See http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html
for correct foreign key definition.
InnoDB: Renaming table `test`.`#sql-d6c_5` to `test`.`t1` failed!
———

А2. Родительская таблица не найдена в словаре данных InnoDB. Это означает, что родительская таблица должна существовать и быть постоянной InnoDB таблицей. Не временной InnoDB таблицей, так как информация о временных таблицах не сохраняется в словаре данных InnoDB. И уж тем более не представлением.

Примеры

mysql> create table t1 (a int, index(a)) engine=myisam;

mysql> create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;
ERROR 1215 (HY000): Cannot add foreign key constraint

— в старых версиях будет ошибка вида
ERROR 1005 (HY000): Cannott create table ‘test.t2’ (errno: 150)

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
2016-11-17 16:30:09 0x364c Error in foreign key constraint of table world/t2:
foreign key (a) references t1(a)) engine=innodb:
Cannot resolve table name close to:
(a)) engine=innodb
————

А3. Синтаксическая ошибка. Внешние ключи реализованы на уровне хранилища, и в старых версиях парсер сервера MySQL не распознавал синтаксические ошибки внешних ключей, из-за чего их было трудно идентифицировать.

Примеры

Например, в определении внешнего ключа количество столбцов дочерней таблицы не совпадает с количеством столбцов родительской таблицы:

create table t1(id int not null primary key, b int, key(b)) engine=innodb;
Query OK, 0 rows affected (0.22 sec)

alter table t1 add foreign key(id,b) references t1(id);
ERROR 1005 (HY000): Can‘t create table ‘test.#sql-d88_b’ (errno: 150)

show warnings;
+——-+——+—————————————————+
| Level | Code | Message                                           |
+——-+——+—————————————————+
| Error | 1005 | Can‘t create table ‘test.#sql-d88_b’ (errno: 150) |
+——-+——+—————————————————+

— понять, что причина в синтаксической ошибке
— можно только из:

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
160605 22:28:23 Error in foreign key constraint of table test/#sql-d88_b:
foreign key(id,b) references t1(id):
Syntax error close to:

— в новых версиях парсер распознает синтаксическую ошибку
— и сообщает об этом:
ERROR 1239 (42000): Incorrect foreign key definition for ‘foreign key without name’: Key reference and table reference don‘t match

Другой пример: попробуем создать внешний ключ на поле типа text:

create table t1 (a text , index(a(50))) engine=innodb;

create table t2 (a text, foreign key (a) references t1(a)) engine=innodb;
ERROR 1170 (42000): BLOB/TEXT column ‘a’ used in key specification without a key length

— MySQL автоматически пытается создать индекс на колонке `a`, и
— сообщает, что нельзя создать индекс по всей длине поля типа text.
— Хорошо, укажем префикс и получим errno 150:

create table t2 (a text, foreign key (a(50)) references t1(a)) engine=innodb;
ERROR 1005 (HY000): Cannot create table ‘test.t2’ (errno: 150)

— понять, что произошла ошибка синтаксиса можно:
— или через show engine innodb status;
— или внимательно сравнить разрешенный синтаксис в документации
— с написанной командой.

А4. Несовпадение типов данных. Столбцы дочерней таблицы, входящие в определение внешнего ключа, должны иметь такие же типы данных, что и столбцы родительской таблицы, на которые они ссылаются, вплоть до атрибутов: знак и кодировка/сопоставление.

Примеры

— например, если у одной колонки мы определим
— атрибут unsigned, а у другой нет, то:
create table t1 (a int unsigned, index(a)) engine=innodb;

create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;
ERROR 1215 (HY000): Cannot add foreign key constraint

— в старых версиях будет ошибка вида
ERROR 1005 (HY000): Cannott create table ‘test.t2’ (errno: 150)

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
2016-11-26 03:00:47 0x10894 Error in foreign key constraint of table world/t2:
foreign key (a) references t1(a)) engine=innodb:
Cannot find an index in the referenced table where the
referenced columns appear as the first columns, or column types
in the table and the referenced table do not match for constraint.
Note that the internal storage type of ENUM and SET changed in
tables created with >= InnoDB-4.1.12, and such columns in old tables
cannot be referenced by such columns in new tables.
Please refer to http://dev.mysql.com/doc/refman/5.7/en/innodb-foreign-key-constr
aints.html for correct foreign key definition.
————

Если несоответствие типов данных возникает во время изменения таблицы при уже существующем внешнем ключе, то ошибка будет иметь вид:

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;

MariaDB [test]> alter table t1 modify a int unsigned;
ERROR 1025 (HY000): Error on rename of ‘.test#sql-d6c_6′ to ‘.testt1′ (errno: 150)

А5. Некорректно задано действие внешнего ключа. Если в определении внешнего ключа указано ON UPDATE SET NULL и/или ON DELETE SET NULL, то соответствующие столбцы дочерней таблицы не должны быть определены как NOT NULL.

Примеры

create table t1 (a int not null, index(a)) engine=innodb;

create table t2 (a int not null, foreign key (a) references t1(a) on delete set null) engine=innodb;
ERROR 1215 (HY000): Cannot add foreign key constraint

— в старых версиях будет:
ERROR 1005 (HY000): Cannot create table ‘test.t2’ (errno: 150)

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
2016-11-26 06:24:42 0x10894 Error in foreign key constraint of table world/t2:
foreign key (a) references t1(a) on delete set null) engine=innodb:
You have defined a SET NULL condition though some of the
columns are defined as NOT NULL.
————

Если коллизия возникает при уже существующем внешнем ключе, то:

create table t1 (a int not null, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a) on delete set null) engine=innodb;

alter table t2 modify a int not null;
ERROR 1025 (HY000): Error on rename of ‘.test#sql-d6c_6′ to ‘.testt2′ (errno: 150)

А6. Дочерняя таблица является временной InnoDB таблицей. Внешние ключи можно создавать только в постоянной, несекционированной InnoDB таблице.

Примеры

create table t1 (a int, index(a)) engine=innodb;

create temporary table t2 (a int, foreign key (a) references t1(a)) engine=innodb;
ERROR 1005 (HY000): Cannot create table ‘test.t2’ (errno: 150)

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
161130  4:22:26 Error in foreign key constraint of table temp/#sql318_4_1:
foreign key (a) references t1(a)) engine=innodb:
Cannot resolve table name close to:
(a)) engine=innodb
———

— в новых версиях ошибка будет иметь вид:
ERROR 1215 (HY000): Cannot add foreign key constraint

А7. Родительская таблица является секционированной таблицей. На данный момент (MySQL 5.7 и MariaDB 10.1) внешние ключи не поддерживаются для секционированных таблиц (partitioned tables). Иными словами, ни родительская, ни дочерняя таблица не должны иметь секции. В случае, когда внешний ключ ссылается на секционированную таблицу диагностика ошибки затруднена ошибкой вывода show engine innodb status:

Примеры

create table t1 (a int, index(a)) partition by range (a)  
(partition p0 values less than (10),
partition p1 values less than (20),
partition p2 values less than maxvalue);

create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;
ERROR 1005 (HY000): Cannot create table ‘test.t2’ (errno: 150)

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
161223 19:38:14 Error in foreign key constraint of table test/t2:
foreign key (a) references t1(a)) engine=innodb:
Cannot resolve table name close to:
(a)) engine=innodb
———
— сообщение указывает на то, что родительская таблица
— не найдена в словаре данных innodb (bug: 84331)

— в новых версиях ошибка будет иметь вид:

create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;
ERROR 1215 (HY000): Cannot add foreign key constraint

Если разбивать на секции родительскую таблицу после создания внешнего ключа, то

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;

alter table t1 PARTITION BY HASH(a) PARTITIONS 8;
ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails

show engine innodb status;
— не содержит секцию LATEST FOREIGN KEY ERROR

Errno 121

Такой результат возникает только в одном случае.

Б1. Неуникальное имя ограничения. Обратите внимание: речь не о имени внешнего ключа. Если при создании внешнего ключа вы указываете не обязательное ключевое слово CONSTRAINT, то идущий после него идентификатор должен быть уникальным в пределах базы данных.

Примеры

create table t1 (a int, index(a)) engine=innodb;

create table t2 (a int, CONSTRAINT q1 foreign key (a) references t1(a)) engine=innodb;

create table t3 (a int, CONSTRAINT q1 foreign key (a) references t1(a)) engine=innodb;
ERROR 1005 (HY000): Cannot create table ‘test.t3’ (errno: 121)

— в 5.7 будет другая ошибка
ERROR 1022 (23000): Cannot write; duplicate key in table ‘t3’

show engine innodb status;
————————
LATEST FOREIGN KEY ERROR
————————
161130  3:31:11 Error in foreign key constraint creation for table `test`.`t3`.
A foreign key constraint of name `test`.`q1`
already exists. (Note that internally InnoDB adds ‘databasename’
in front of the user-defined constraint name.)
Note that InnoDB FOREIGN KEY system tables store
constraint names as case-insensitive, with the
MySQL standard latin1_swedish_ci collation. If you
create tables or databases whose names differ only in
the character case, then collisions in constraint
names can occur. Workaround: name your constraints
explicitly with unique names.
———

Нет ошибок

Внешний ключ не создается, и нет никаких ошибок. Это может происходить по следующим причинам:

В1. Дочерняя таблица не является InnoDB таблицей. В этом случае для совместимости с другими субд парсер MySQL просто проигнорирует конструкцию внешнего ключа.

Примеры

create table t1 (a int, index(a)) engine=innodb;

create table t2 (a int, foreign key (a) references t1(a)) engine=myisam;
Query OK, 0 rows affected (0.33 sec)

MariaDB [test]> show create table t2G
*************************** 1. row ***************************
       Table: t2
Create Table: CREATE TABLE `t2` (
  `a` int(11) DEFAULT NULL,
  KEY `a` (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
1 row in set (0.00 sec)

В2. Не соответствует синтаксису MySQL. Стандарт SQL разрешает указывать внешний ключ сразу при объявлении колонки с помощью конструкции REFERENCES (например, … a int references t1(a), …), однако MySQL игнорирует такую форму записи. Единственный способ создать в нем внешний ключ — это использовать отдельный блок FOREIGN KEY:

[CONSTRAINT [symbol]] FOREIGN KEY
    [index_name] (index_col_name, …)
    REFERENCES tbl_name (index_col_name,…)
    [ON DELETE reference_option]
    [ON UPDATE reference_option]

reference_option:
    RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT

Несоответствие данных

В этой части собраны ошибки, которые возникают из-за нарушения ссылочной целостности, т.е. наличие в дочерней таблице записей, которым нет соответствия в родительской таблице.

Г1. Удаление родительской таблицы. Нельзя удалить родительскую таблицу при наличии внешнего ключа.

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;

drop table t1;
ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails

Удаление следует понимать в расширенном варианте как удаление из множества InnoDB таблиц. Например, если мы сменим (alter table) движок родительской таблицы на MyISAM, то с точки зрения ограничения внешнего ключа родительская таблица перестанет существовать (т.к. она должна быть постоянной innodb таблицей):

alter table t1 engine=myisam;
ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails

Сначала нужно удалить внешний ключ (или всю дочернюю таблицу, что удалит в том числе и внешний ключ). Если вы не знаете какие таблицы являются дочерними для заданной таблицы, то это можно определить через запрос к information_schema:

select table_name from information_schema.key_column_usage
where table_schema = «test» and references_table_name = «t1»;

Г2. Изменение данных в родительской таблице. Если в определении внешнего ключа не задано действие при update/delete, то такие операции над родительской таблицей могут привести к несогласованности данных, т.е. появлению в дочерней таблице записей не имеющих соответствия в родительской таблице.

Примеры

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;

insert into t1 values(1);
insert into t2 values(1);

update t1 set a=2;
ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`a`) REFERENCES `t1`(`a`))

Г3. Изменение данных в дочерней таблице. Если insert/update записи в дочерней таблицы приводит к несогласованности данных, то

Примеры

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, foreign key (a) references t1(a)) engine=innodb;

insert into t2 values(15);
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`))

Г4. Добавление внешнего ключа на не пустую таблицу. При попытке добавить внешний ключ на таблицу, в которой есть записи, не удовлетворяющие условию внешнего ключа (т.е. не имеющие соответствия в родительской таблице), будет ошибка:

Примеры

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, index(a)) engine=innodb;

insert into t2 values(2);

alter table t2 add foreign key (a) references t1(a);
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`test`.`#sql-3f0_4`, CONSTRAINT `#sql-3f0_4_ibfk_1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`))

Г5. Не уникальный ключ в родительской таблице. По стандарту SQL набор полей, на которые ссылается внешний ключ, должен быть уникальным. Однако, реализация внешних ключей в InnoDB позволяет иметь несколько «родителей». Из-за этого возникает трудно диагностируемая ошибка:

Примеры

create table t1 (a int, index(a)) engine=innodb;
create table t2 (a int, index(a)) engine=innodb;

insert into t1 values (1),(1);
insert into t2 values(1);

delete from t1 where a=1 limit 1;
ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`a`) REFERENCES `t1`(`a`))

Сводная таблица

По вертикали расположены коды ошибок MySQL, которые возникают при работе с внешними ключами («нет ошибок» соответствует ситуации, когда сервер не генерирует ошибку, но и не создает внешний ключ). По горизонтали — идентификаторы причин, которые могут привести к ошибке. Плюсы на пересечении указывают какие причины приводят к той или иной ошибке.

А1 А2 А3 А4 А5 А6 А7 Б1 В1 В2 Г1 Г2 Г3 Г4 Г5
MySQL error 1005 + + + + + + + +
MySQL error 1022 +
MySQL error 1025 + + +
MySQL error 1215 + + + + +
MySQL error 1217 + +
MySQL error 1239 +
MySQL error 1451 + +
MySQL error 1452 + +
нет ошибок + +

P.S. Если ваш случай не рассмотрен в статье, то задавайте вопрос на форуме SQLinfo. Вам ответят, а статья будет расширена.

Дата публикации: 2.12.2016

© Все права на данную статью принадлежат порталу SQLInfo.ru. Перепечатка в интернет-изданиях разрешается только с указанием автора и прямой ссылки на оригинальную статью. Перепечатка в бумажных изданиях допускается только с разрешения редакции.

MySQL Foreign Key Errors: errno 150, errno 121, and others

Diagnosing Errors

  1. SHOW ENGINE INNODB STATUS is Your New Best Friend: Click for solution

    If you get one of the really helpful errors (sarcasm) like the errno 150 or errno 121, then by simply typing in SHOW ENGINE INNODB STATUS, there is a section called «LATEST FOREIGN KEY ERROR». Under that it will give you a very helpful error message, which typically will tell you right away what is the matter. What’s the catch?
    You need SUPER privileges to run it, so if you don’t have that, you’ll just have to test out the following scenarios.

  2. Use Eliacom’s MySQL GUI tool to catch most errors: Click for solution

MySQL errno 150

ERROR 1005 (HY000): Can’t create table ‘table’ (errno: 150)

ERROR 1025 (HY000): Error on rename of ‘table’ to ‘newtable’ (errno: 150)

Causes and Solutions for errno 150

  1. Data Types Don’t Match: Click for solution

    The types of the columns have to be the same (usually). This is one of the most common reasons for errno 150. For instance, if the type of the child column is VARCHAR(50), the type of the parent column should be exactly VARCHAR(50) (since they’re supposed to hold the same data). For numeric types, if one is UNSIGNED, then both have to be UNSIGNED. They should match exactly!. I have run into circumstances where it has let me create a foreign key where the child column was a VARCHAR(50) and the parent column was a VARCHAR(200). Interestingly, if I tried to do the opposite for the same tables, reference a child column that was a VARCHAR(200) to a parent column that was a VARCHAR(50), it threw the errno 150 error. This all might depend on the version of MySQL you are using, and really, the data types should match exactly since the same data is being stored in both places.

    How do you fix it? You need to check the data types for the columns. You can check them by using SHOW COLUMNS, or SHOW CREATE TABLE. If you are using Eliacom’s MySQL GUI tool, then the system should alert you if their data types are different before it attempts to create the foreign key, so you shouldn’t have to worry about this. If you don’t know how to add foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  2. Parent Columns Not Indexed (Or Indexed in Wrong Order): Click for solution

    MySQL requires that both the child columns and parent columns have indexes on them so that the operations to ensure the constraint is in effect can be done quickly. If there isn’t a key (index) on the child table, it will automatically create it. But if there isn’t one on the parent table, then it will throw a (very unhelpful) error. Important: For multi-column foreign keys, you need a multi-column index. The order of the columns in the index matters! This means you could have an index on the two columns you’re trying to match, but if they’re in a different order than how you put them into the foreign key statement, you’ll get this error.

    How do you fix it? You need to check that you have an appropriate index on the parent table. If you are creating a foreign key on multiple columns, then you need to create an index on those columns in the right order. If you are creating a foreign key on one column, and that column has a multi-column index, then it should work if the column is the first in the index. I have heard that sometimes this doesn’t work, but I’ve never been able to confirm that (let me know if you’ve had this experience). If you are using Eliacom’s MySQL GUI tool, then the system will check if there is an appropriate index on the parent table. If there isn’t, then it will automatically (and silently) create one for you. You can always view the indexes that exists on each table easily in the Table Manager as well. If you don’t know how to add foreign keys (or view indexes) using our MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  3. Column Collations Don’t Match:Click for solution

    For character string type columns (CHAR, VARCHAR, etc.), the column collations have to match exactly. This of course means that the CHARACTER SETs have to match exactly as well. If they aren’t, you can expect the errno 150 error.

    How do you fix it? You need to check the collations for the columns to see if this might be the cause of the issue. The easiest way to do this using MySQL queries is using SHOW FULL COLUMNS. That will tell you the collation for each column in a table. If you are using Eliacom’s MySQL GUI tool, then when you create the foreign key, our MySQL GUI tool will precheck the collations. If they are not the same, then it will tell you that they are different and need to be fixed before the foreign key can be implemented. If you don’t know how to add foreign keys (or view indexes) using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  4. Using SET NULL on a NOT NULL Column: Click for solution

    If you try to execute a statement like:

    ALTER TABLE `child_table` ADD FOREIGN KEY (`child_column`) REFERENCES `parent_table` (`parent_column`) ON DELETE SET NULL

    and if the child_column’s definition has NOT NULL in it, you will get the errno 150 error.

    How do you fix it? This takes some thought. Do you really want to set the child to NULL if the parent is deleted (or updated if you did ON UPDATE SET NULL)? If so, you need to make sure that NULL is allowed for that column in the child table. You can check this using SHOW COLUMNS or SHOW CREATE TABLE. If you didn’t really want that, then change the ON DELETE/UPDATE SET NULL to something like CASCADE or RESTRICT. If you are using Eliacom’s MySQL GUI tool, then when you go to create the foreign key, the system will alert you if you are trying to SET NULL to a column that is NOT NULL, so you can decide if you want to change it. If you don’t how know to add foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  5. Table Collations Don’t Match: Click for solution

    Just like the Column Collations issue above, having different table collations, even though the column collations match, can cause some problems (at least on some versions of MySQL; this may have been fixed in later versions since this in principle the table default shouldn’t matter). Where we have seen this error crop up is if you have two tables with different collations, but the column collations are the same: it did allow us to create the foreign key without any errors (this was done on MySQL 5.1.41). However, if we ever attempted to modify the child column at all (say rename it, or even just run a «MODIFY COLUMN» query that kept its attributes the same, we would get the errno 150 error. In this case, SHOW INNODB STATUS was completely unhelpful. It said something about needing indexes, or that we possibly SET NULL on a NOT NULL column.
    Note: Actually in the case we found, it was different default character sets at the table level, but I’m guessing it happens if only the collations are different as well.

    How do you fix it? You’ll have to change the table collations to match as well as the column collations. It’s possible that in more recent versions of MySQL that this has been fixed. If you are using Eliacom’s MySQL GUI tool, then you can change the table collation by using our MySQL GUI’s table editor. If you don’t know how to edit tables using our MySQL GUI tool, see the video tutorial on editing tables.

  6. Parent Column Doesn’t Actually Exist In Parent Table: Click for solution

    This is the kind of error that you will spend hours looking for, and then kick yourself when you find it. Check your spelling and look for spaces! Take for instance the query below:

    alter table esp_empdata add constraint foreign key (`empClass`) references `esp_empclasses` (` id2`)

    I went through all the other checks in this paper over and over about 50 times. I was about to give up hope, when I discovered the trick of using SHOW INNODB STATUS, and it will actually take all the mystery away of why these foreign key errors are happening. It told me «Cannot resolve column name close to: «. I thought, what does that mean? I looked more closely, realized I had a space before id2, and kicked myself, repeatedly. You will get the errno 150 error.

    How do you fix it? Double check that the column that you are trying to reference actually exists. If it checks out, then triple check for things like spaces at the beginning or end of the column, or anything that might make it miss the column in the parent table.

  7. One of the indexes on one of the columns is incomplete (column is too long) Click for solution

MySQL errno 121

ERROR 1005 (HY000): Can’t create table ‘table’ (errno: 121)

ERROR 1025 (HY000): Error on rename of ‘table’ to ‘newtable’ (errno: 121)

Causes and Solutions for errno 121

  1. Constraint Name Taken: Click for solution

    The constraint name that you picked is already taken. If you’re wondering what the constraint name is, in the example below where you are altering a table adding a foreign key, the constraint name is in blue:

    ALTER TABLE `child_table` ADD CONSTRAINT `some_constraint_name` FOREIGN KEY `key_name` (`child_column`)
    REFERENCES `parent_table` (`parent_column`)

    If the constraint name happens to be taken, you will get an errno 121.

    How do you fix it? If you’re explicitly choosing a constraint name, then choose something different (since what you chose is apparently already taken). Or you can let MySQL automatically set it for you by not choosing one at all (that’s what I recommend). If you really want to set your own, you can check what the other names are by looking in `information_schema`.`table_constraints` in your MySQL server, to see what’s taken. If you’re relatively certain which table has the constraint that has taken your name, then you can use SHOW CREATE TABLE to view them. If you are using Eliacom’s MySQL GUI tool, then when you go to create the foreign key, the system will precheck your name, and alert you if the name you chose is already taken. If you don’t how know to add foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  2. Two Tables With Same Name But Different Case: Click for solution

    One of the most difficult times I ever had tracking down a foreign key error. What was weird was is it worked on one server, but not on another, which I thought were identical installations. The one difference between the two was that one server had case sensitive table naming turned on and the other didn’t. On the server with the case sensitive table naming turned on, I attempted to run the following query:

    alter table esp_empData add constraint foreign key (`empClass`) references `esp_empclasses` (`id2`)

    When I ran the above query, I got the following error:

    ERROR 1025 (HY000): Error on rename of ‘./otb10/#sql-37c_2f534’ to ‘./otb10/esp_empData’ (errno: 121)

    This was not good. It turned out I had another table with the same name but all lowercase(esp_empdata).

    How do you fix it? When this is the case (you have two tables that are the same name, but with case differences), you’re stuck. There’s nothing you can do (or at least as far as I could see) but to change the table name of the upper case table to something different (adding a «2» to the end fixed it). Luckily, it was was a mistake I had these two tables. And honestly, you really shouldn’t have more than one table named the exact same thing other than their case being different. So just don’t do that.

Other Foreign Key Errors You Might Encounter

  1. A Foreign Key Constraint Fails: Data Doesn’t Match: Click for solution

    The most common but easy error to track (because it actually tells you what is wrong, is when you have data in the child table that does not match to the parent table. If you get this error, chances are you don’t have any of the problems below, since it actually got to the point of checking the data. However, if you’re getting this error and you’re SURE that you don’t have any bad data see «Duplicate Foreign Keys» below. Your error probably looks something like this when you go to create the foreign key (it will vary based on your columns):

    ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`database`.`#sql-37c_2f534`, CONSTRAINT `#sql-37c_2f534_ibfk_5` FOREIGN KEY (`child_column`) REFERENCES `parent_table` (`parent_column`))

    How do you fix it? To fix this, you need to find all the child values and get rid of them, either by setting them to NULL (if that’s allowed), or by making them actually allowed values. If you’re pretty MySQL savvy, you can make a query to check what values are offending. It should look something like:SELECT `child_table`.`child_column` from `child_table` where `child_table`.`child_column` IS NOT NULL AND NOT EXISTS (SELECT * FROM `parent_table` WHERE `parent_table`.`parent_column`=`child_table`.`child_column`)
    It will look a little different if you have a multiple column foreign key. If any rows are returned, those are the offenders. If you are using Eliacom’s MySQL GUI tool to create the foreign key, if there are any offending child values, it will list them when you attempt to create the foreign key, to help you find the values that need to be fixed. If you don’t know how to add foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

    How not to fix it: Some people say that you can use the query «SET foreign_key_checks=0» to get around this. That is true, but don’t do this, unless you think that the discrepancy is temporary. For instance, this is useful when cloning a database. If you copy over a child table data before the parent table data, the parent values won’t be there to start with, so the foreign key constraint will fail. In this case you should use foreign_key_checks=0, because once the parent table is in place everything will match. But if this isn’t used carefully, you can end up with child data that doesn’t match to any parent data in your child table. Use wisely!

  2. No Error, but Foreign Key Won’t Create: Table Isn’t InnoDB: Click for solution

    Both tables need to be using the InnoDB Engine. If they don’t, then MySQL will NOT throw an error, but it also won’t create the foreign key. It just silently dies. This is probably worse than actually getting an error. So if you create a foreign key, and then the foreign key isn’t there, see if you are using the InnoDB Engine for both the child and parent tables. If you do this, you will get:

    No error at all!

    How do you fix it? You will have to change the engine for your tables. You can do this by doing ALTER TABLE `tableName` ENGINE=InnoDB; If you’re using Eliacom’s MySQL GUI tool, then when you go to create the foreign key, it will check the engines and throw an error if they don’t match before attempting to do the query. If you don’t how know to add foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  3. Identifier Name is Too Long: Click for solution

    This is an issue with the fact that the MySQL doesn’t allow any identifier names to be longer than 64 characters. Note, that if your table name is pushing 64 characters, then the way that MySQL creates the default constraint name is using the table, and a suffix/prefix appended to it so that it might exceed the number of characters. Apparently, this error sometimes allows things like table creation even though the foreign key creation failed. If you have this problem, you will get an error that looks like this:

    ERROR 1059 (42000): Identifier name ‘myreallyreallyreallyreallyreallllllllllyreallyreallyreallyreallyreallylongname’ is too long

    How do you fix it?This one is more tricky. If it’s because you have a really long table name, then you can’t let MySQL assign the foreign key name automatically since it will throw the error. So you will have to set it manually. See the syntax in the Foreign Key White Paper for how to set this manually. If you are using Eliacom’s MySQL GUI tool, then when you go to create the foreign key, there is a spot in the foreign key creation form for you to create your own foreign key constraint name. If you don’t how know to add foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on adding foreign keys and indexes.

  4. A Foreign Key Constraint Fails (Duplicate Foreign Keys): Click for solution

    I have gotten the «foreign key constraint fails» error a few times, when I’ve tried to update a parent table (with an ON UPDATE CASCADE foreign key, but it might happen with other types). I have double-double checked there is no data that is bad. In the end, the problem was that I had two identical foreign keys. It appears that when one tried to update the child table, the other caught it as an attempt to change the child table. The indicator that this is your problem is if you are updating the parent table, and it complains about the parent/child relationship. You should get an error that looks like this:

    ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`database`.`#sql-37c_2f534`, CONSTRAINT `#sql-37c_2f534_ibfk_5` FOREIGN KEY (`child_column`) REFERENCES `parent_table` (`parent_column`) ON UPDATE CASCADE)

    How do you fix it? Easy one. Just delete the duplicate foreign key. To get the foreign key names, you can use SHOW CREATE TABLE to see what the constraint names are to delete them. If you are using Eliacom’s MySQL GUI tool, you can delete the foreign key from the «Foreign Keys» tab for that table. If you don’t how know to find foreign keys using Eliacom’s MySQL GUI tool, see the video tutorial on foreign keys and indexes.

  5. Anything else?: Click for solution

    If you’ve run into something that doesn’t seem to be here, let us know. Even if you figured it out, we’d love to help out future generations.

Frustrated?

There are many reasons why you can get foreign key errors, and often very different reasons give the same error, which is why it’s sometimes so hard to track down exactly what is the cause. The purpose of this white paper is to create an exhaustive list of the reasons why you get these error, and then to expand on that list with other things that can go wrong when trying to create foreign keys. Again, if you happen to run into a situation we don’t cover, please let us know so we can try to help you, and so we can put the information here to help future generations?

Obscure MySQL Error

We hope you found this white paper useful. Please let us know if you have any questions you felt were not addressed in the white paper or if you have any feedback: Contact Us

12 ответов

Обычно вы получаете эту ошибку, если ваши таблицы используют движок InnoDB. В этом случае вам придется отказаться от внешнего ключа, а затем сделать таблицу alter и отбросить столбец.

Но сложная часть заключается в том, что вы не можете удалить внешний ключ, используя имя столбца, но вместо этого вам нужно будет найти имя, используемое для его индексации. Чтобы найти это, выполните следующие действия:

ПОКАЗАТЬ СОЗДАТЬ область ТАБЛИЦЫ;

Это должно показать вам имя индекса, что-то вроде этого:

CONSTRAINT region_ibfk_1 ИНОСТРАННЫЙ КЛЮЧ (country_id) ССЫЛКИ country (id) ON УДАЛИТЬ НЕТ ACTION ON UPDATE NO ACTION

Теперь просто выпустите:

изменить внешний вид таблицы регистров region_ibfk_1;

И наконец:

изменить столбец падения таблицы таблицы COUNTRY_ID;

И тебе хорошо идти!

Jeshurun
11 апр. 2011, в 02:12

Поделиться

Это действительно ошибка внешнего ключа, вы можете узнать, используя perror:

shell$ perror 150
MySQL error code 150: Foreign key constraint is incorrectly formed

Чтобы узнать более подробную информацию о том, что не удалось, вы можете использовать SHOW ENGINE INNODB STATUS и найти раздел LATEST FOREIGN KEY ERROR, содержащий подробные сведения о том, что не так.

В вашем случае это скорее всего приводит к тому, что что-то ссылается на столбец country_id.

Harrison Fisk
07 окт. 2008, в 17:53

Поделиться

Вы также можете получить эту ошибку, пытаясь сбросить несуществующий внешний ключ. Поэтому при удалении внешних ключей всегда убедитесь, что они действительно существуют.

Если внешний ключ существует и вы все еще получаете эту ошибку, попробуйте следующее:

SET @[email protected]@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @[email protected]@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @[email protected]@SQL_MODE, SQL_MODE='TRADITIONAL';

//Оставьте здесь иностранный ключ!

SET [email protected]_SQL_MODE;
SET [email protected]_FOREIGN_KEY_CHECKS;
SET [email protected]_UNIQUE_CHECKS;

Это всегда делает трюк для меня:)

Jeroen
22 окт. 2009, в 10:36

Поделиться

Просто запустите запрос alter table, используя «KEY» вместо «FOREIGN KEY» в инструкции drop. Я надеюсь, что это поможет решить проблему, и упустит ограничение внешнего ключа, и вы можете изменить столбцы таблицы и отбросить таблицу.

ALTER TABLE slide_image_sub DROP  KEY  FK_slide_image_sub;

здесь, в DROP KEY вместо DROP FOREIGN KEY,

надеюсь, что это поможет.

Спасибо

Sohail
21 фев. 2013, в 08:52

Поделиться

Выполнение

SET FOREIGN_KEY_CHECKS=0;

до того, как Операция также может выполнить трюк.

Jan Tchärmän
14 янв. 2017, в 18:02

Поделиться

Я знаю, это старый пост, но это первый удар по каждой любимой поисковой системе, если вы ищете ошибку 1025.

Однако для устранения этой проблемы существует простой «взлом»:

Прежде чем выполнять свои команды, вам сначала нужно отключить проверку ограничений внешних ключей, используя следующую команду:

SET FOREIGN_KEY_CHECKS = 0;

Затем вы можете выполнить свои команды.

После того, как вы закончите, не забудьте снова включить ограничения внешнего ключа, используя следующую команду:

SET FOREIGN_KEY_CHECKS = 1;

Удачи вам в ваших усилиях.

Baccata
09 янв. 2017, в 09:41

Поделиться

У меня были похожие проблемы один раз. Я удалил первичный ключ из таблицы A, но когда я пытался удалить столбец внешнего ключа из таблицы B, мне была показана вышеприведенная ошибка.

Вы не можете удалить внешний ключ с помощью имени столбца и обходить его в PHPMyAdmin или MySQL, сначала удалите ограничение внешнего ключа перед переименованием или удалением атрибута.

Joomler
12 янв. 2016, в 06:34

Поделиться

Возможно, есть другая таблица с внешним ключом, ссылающаяся на первичный ключ, который вы пытаетесь изменить.

Чтобы узнать, какая таблица вызвала ошибку, вы можете запустить SHOW ENGINE INNODB STATUS, а затем посмотреть раздел LATEST FOREIGN KEY ERROR

Используйте категории SHOW CREATE TABLE, чтобы показать имя ограничения.

Скорее всего, это будут категории_ibfk_1

Используйте имя, чтобы сначала удалить внешний ключ и столбец:

ALTER TABLE categories DROP FOREIGN KEY categories_ibfk_1;
ALTER TABLE categories DROP COLUMN assets_id;

youngdero
11 янв. 2016, в 14:47

Поделиться

Если вы используете такой клиент, как MySQL Workbench, щелкните правой кнопкой мыши нужную таблицу, из которой должен быть удален внешний ключ, затем выберите вкладку внешнего ключа и удалите индексы.

Затем вы можете запустить запрос следующим образом:

alter table table_name drop foreign_key_col_name;

iltaf khalid
08 янв. 2013, в 21:48

Поделиться

Взгляните в файл ошибки для вашей базы данных mysql. Согласно Ошибка № 26305 мой sql не дает вам причины. Эта ошибка существует с MySQL 4.1; -)

marabol
16 март 2010, в 17:34

Поделиться

В моем случае я использовал Workbench MySQL, и я столкнулся с той же проблемой при удалении одного из моих столбцов в таблице. Я не смог найти имя внешнего ключа. Для решения проблемы я выполнил следующие шаги:

  • Rt. нажмите на свою схему и выберите «инспектор схемы». Это дает вам различные таблицы, столбцы, индексы, ect.

  • Перейдите на вкладку с названием «Индексы» и найдите имя столбца под столбцом «Столбец». После обнаружения проверьте имя таблицы для этой записи под именем столбца «Таблица». Если он совпадает с именем нужной таблицы, запишите имя внешнего ключа из столбца с именем «Имя».

  • Теперь выполните запрос: ALTER table tableNamexx DROP KEY foreignKeyName;

  • Теперь вы можете выполнить оператор drop, который должен успешно выполняться.

Jatin Shashoo
25 фев. 2016, в 09:32

Поделиться

Я бы предположил проблему ограничения внешнего ключа. Используется ли country_id в качестве внешнего ключа в другой таблице?

Я не DB гуру, но я думаю, что я решил проблему вроде этого (там, где было ограничение fk), удалив fk, выполнив свой файл alter table, а затем переделав файл fk.

Мне будет интересно узнать, каков результат — иногда mysql довольно загадочный.

itsmatt
02 окт. 2008, в 00:32

Поделиться

Ещё вопросы

  • 0Переменные MySQL и нотации подзапроса
  • 0Ошибка обработки файла
  • 1AndroidManifest.xml; невозможно включить внешнюю библиотеку
  • 0Фатальная ошибка новичка lkn1104 при запуске простого кода
  • 0ROW_NUMBER () эквивалентная функция в MySQL
  • 0Выполнение запроса по первым 3 буквам значения базы данных
  • 0Поймать группу пользователей в потоке входа в систему и удалить доступ к интерфейсу, если принадлежит к определенной группе
  • 0Вызов неопределенного метода в топливе PHP
  • 0Отправить выбранные элементы в поле?
  • 1Flask — Вызовите маршрут и вернитесь к первому маршруту.
  • 0Ограничить загрузку пользователей
  • 1PyTest: автоматическое удаление временного каталога, созданного с помощью tmpdir_factory
  • 1ItemizedOverlay, кажется, рисует с «ломаной» проекцией
  • 0CakePHP проекты Сессия не работает
  • 1Изменение конфигурации цвета в веб-приложении во время выполнения
  • 1Как переопределить параметры по умолчанию в объекте, переданном в функцию?
  • 1Ошибка при получении дочерних узлов упорядоченного списка
  • 0Ubuntu 17.10 — ОШИБКА 2002 (HY000): не удается подключиться к локальному серверу MySQL через сокет ‘/var/run/mysqld/mysqld.sock’ (2)
  • 0Angular JS динамически создает нг-сетку в аккордеоне
  • 0Моя кнопка HTML5 постоянно обновляет браузер
  • 1Сохранить и загрузить начальное состояние массива (int [,])
  • 0Yii renderPartial с помощью внешнего JavaScript
  • 1Какой тип я должен объявить для моего объекта, чтобы он принимал разные конструкторы из разных классов
  • 0Изменение текста после фотографии с помощью jquery
  • 0Отладчик не показывает значения с плавающей точкой в Xcode 5.0.2
  • 0Показывать видео в формате .mp4 на веб-сайте в соответствии со стандартом HTML 4.01
  • 0CodeIgniter — извлекает данные из MySQL и отображает без обновления страницы
  • 0Какой надежный способ обработки и отправки ошибок в NewRelic с помощью Slim PHP Framework?
  • 0Получение деталей о фотографии при наведении на нее
  • 1C # не может сравнить два datetime правильно
  • 0Проектирование базы данных — система «много ко многим» или «один ко многим»?
  • 1Этот сайт не может быть достигнут (ERR_CONNECTION_CLOSED) обнаружение JavaScript для window.open
  • 1SignalR ограничение количества подключений
  • 1Python — Сумма по уникальным атрибутам в списке атрибутов
  • 0Обновить CListCtrl после загрузки переменной с сериализацией
  • 1Войти в Jabber-сеть
  • 0php loop математические вопросы
  • 0Как удалить 2 строки таблицы с предложением WHERE в одной таблице?
  • 1Не удалось загрузить myapp.apk
  • 1Где я могу разместить свои файлы Python в папке venv?
  • 1Нарисуйте вид с рисунком
  • 0Рекурсивная функция в с ++
  • 0Разобрать текстовый файл PHP на несколько переменных
  • 0Как получить дату начала и окончания каждой недели в текущем месяце, используя mysql?
  • 0Как запросить Google статические карты API для всех уличных суффиксов в почтовом индексе?
  • 0Как я могу проверить, является ли элемент частью определенного меню [Joomla 3.3]
  • 0Кэш Magento Enable создает страницу ошибки Внимание: simplexml_load_string ()
  • 1Данные журнала Android
  • 1Исключение в задании

a nasty MySQL bug

Recently I wanted to remove a column from phpmyadmin that is covered with a constraint. Impossible to do so, MySQL throws following error:

ERROR 1025 (HY000): Error on rename of ‘./optiner_prestadmin/#sql-6bc_3e6’ to ‘./optiner_prestadmin/order_history’ (errno: 150)

You may get above error when executing a query removing index, e.g.

ALTER TABLE order_history DROP INDEX user_id;

Fortunately, there is a solution, not very easy to find in the internet (I used comments from this article).

  1. execute the following in MySQL:
    SHOW CREATE TABLE order_history;

    You shall get something like:

    order_history | CREATE TABLE `order_history` (
      `order_id` bigint(20) NOT NULL,
      `user_id` bigint(20) NOT NULL,
      `status_id` bigint(20) NOT NULL,
      `informed` tinyint(1) DEFAULT '0',
      `comment` text,
      `created_at` datetime NOT NULL,
      `created_by` bigint(20) NOT NULL DEFAULT '1',
      PRIMARY KEY (`id`),
      KEY `order_id_idx` (`order_id`),
      KEY `user_id_idx` (`user_id`),
      KEY `status_id_idx` (`status_id`),
      KEY `created_by_idx` (`created_by`),
      CONSTRAINT `order_history_created_by_sf_guard_user_id`
        FOREIGN KEY (`created_by`) REFERENCES `sf_guard_user` (`id`)
          ON DELETE CASCADE,
      CONSTRAINT `order_history_order_id_order_info_id`
        FOREIGN KEY (`order_id`) REFERENCES `order_info` (`id`),
      CONSTRAINT `order_history_status_id_order_status_id`
        FOREIGN KEY (`status_id`) REFERENCES `order_status` (`id`),
      CONSTRAINT `order_history_user_id_sf_guard_user_id`
        FOREIGN KEY (`user_id`) REFERENCES `sf_guard_user` (`id`)
    ) ENGINE=InnoDB AUTO_INCREMENT=28305 DEFAULT CHARSET=utf8
  2. we want to delete the whole column user_id (with all corresponding indices, constraints, etc.) — need to drop the FOREIGN KEY first:
    ALTER TABLE order_history
      DROP FOREIGN KEY `order_history_user_id_sf_guard_user_id`;

    you’ll find the name of the foreign key in the last constraint clause.

  3. finally, drop the column:
    ALTER TABLE `order_history` DROP `user_id`;

    and that’s it!

    Query OK, 28065 rows affected (3,99 sec)
    Records: 28065  Duplicates: 0  Warnings: 0

Понравилась статья? Поделить с друзьями:
  • Error no pubspec yaml file found
  • Error no pool defined at least one pool section must be specified in config file
  • Error no permission specified adb
  • Error no pduapi module found
  • Error no parameter defined эцп