0

考虑我有 2 个具有相同字段的数据库。
第一个数据库用于导出数据,
第二个数据库作为副本有数据库

数据库 1 将以从 PHP 脚本输出的文件格式 csv 导出数据库。
数据库 2 将从 php 脚本导入数据库。

每个数据库中有两个与外键有关系的表。

表交易

create table `table_transaction` (
    `id` int auto_increment primary key
    `date` DATE default now()
) engine = innoDB;

样本数据

id | date 
1  | 2012-12-31
2  | 2012-12-30
3  | 2012-12-29

table_transaction_product

create table `table_transaction_product` (
    `id` int auto_increment primary key
    `product` string NOT NULL default '' /* Product Name */
    `fk_transaction` int auto_increment NOT NULL

     foreign key (`fk_transaction`)
         references table_transaction(`id`)
         on update cascade
         on delete cascade
) engine = innoDB;

样本数据

id | product     | fk_transaction
1  | shampoo     | 1
2  | soap        | 1
3  | conditioner | 1

这是从数据库 1 导出的 CSV 样本,将被导入表 2,即导出事务 id 1。

insert into table_transaction (id, date) values (1, '2012-12-31');
insert into table_transaction_product (id, product, fk_transaction) 
    values 
        (1, 'shampoo', 1),
        (2, 'soap', 1),
        (3, 'conditioner', 1)

问题
因为ID两个表都是auto_increment. 我手动插入表格不会有任何问题。id并使 auto_increment mysql 系统崩溃?但是如果没有输入ID,让mysql来判断,那么外键就会不匹配。我该怎么办?

谢谢你。

4

1 回答 1

1

它不应该引起问题,但我建议更改第二个数据库上的表定义以删除 auto_increment 标志。

于 2012-08-30T17:19:29.530 回答