gpt4 book ai didi

mysql - 与数据透视表连接的外键约束格式不正确

转载 作者:行者123 更新时间:2023-11-29 20:32:39 25 4
gpt4 key购买 nike

我正在连接数据透视表,但它不断调用此错误

 SQLSTATE[HY000]: General error: "Foreign key constraint is incorrectly formed")

这是有问题的专栏

$table->increments('id'); (the id which should be primary key)

$table->integer('qu', false); (the column that is connected to pivot table

这是在数据透视表中

        $table->integer('quick_id')->unsigned()->index();
$table->foreign('quick_id')->references('qu')->on('speed')->onDelete('cascade');

最佳答案

要么qu需要未签名,要么quick_id不能未签名。当一列无符号且一列无符号时,您无法在 2 个整数列上创建外键。

关于mysql - 与数据透视表连接的外键约束格式不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38959373/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com