データベーステーブルの行の順序を変更する必要があります。 テーブルには4列と7行があります。 Iどのようにデータベース内の行の並べ替え
Cannot delete or update a parent row: a foreign key constraint fails (`database_name`.`oc_t_item_custom_attr_categories`, CONSTRAINT `oc_t_item_custom_attr_categories_ibfk_1` FOREIGN KEY (`fk_i_group_id`) REFERENCES `oc_t_item_custom_attr_groups` (`pk_i_id`))
...私はpk_i_id値(番号)を変更したAdminerでは、これらの行
pk_i_id int(10) unsigned Auto Increment
s_name varchar(255) NULL
s_heading varchar(255) NULL
s_order_type varchar(10) NULL
を並べ替えるために何かを必要とする、私はこのエラーを取得していますあなたは知っていますかそれを変更 ?
編集
oc_t_item_custom_attr_categoriesあなたがテーブルの上にあなたの外部キーを変更する必要が
fk_i_group_id int(10) unsigned
fk_i_category_id int(10) unsigned
インデックス
PRIMARY fk_i_group_id, fk_i_category_id
INDEX fk_i_category_id
foreginキー
fk_i_group_id oc_t_item_custom_attr_groups_2(pk_i_id) RESTRICT RESTRICT
fk_i_category_id oc_t_category(pk_i_id) RESTRICT RESTRICT
適切なDBMSで質問にタグを付けてください。ほとんどのDBMSは、外部キーのON UPDATE CASCADEオプションをサポートして、PKの変更を参照テーブルに伝播します。 – Serg