SQLSTATE[42000]:语法错误或访问冲突:1075 表定义不正确;只能有一个自动列,并且必须将其定义为键

Posted

技术标签:

【中文标题】SQLSTATE[42000]:语法错误或访问冲突:1075 表定义不正确;只能有一个自动列,并且必须将其定义为键【英文标题】:SQLSTATE[42000]: Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto column and it must be defined as a key 【发布时间】:2017-06-22 13:05:07 【问题描述】:
public function up()

    Schema::create('jadwal_praks', function (Blueprint $table) 
        $table->increments('id');
        $table->integer('thnajrn_id', 10)->unsigned();
        $table->foreign('thnajrn_id')->references('id')->on('tahun_ajarans');
        $table->integer('prak_id', 10)->unsigned();
        $table->foreign('prak_id')->references('Prak_kode')->on('mata_praks');
        $table->integer('hari_id', 10)->unsigned();
        $table->foreign('hari_id')->references('id')->on('haris');
        $table->integer('jam_id', 10)->unsigned();
        $table->foreign('jam_id')->references('id')->on('jams');
        $table->integer('ruang_id', 10)->unsigned();
        $table->foreign('ruang_id')->references('id')->on('ruangs');
        $table->integer('kap_id', 10)->unsigned();
        $table->foreign('kap_id')->references('id')->on('kapasitas');

        $table->timestamps();
        $table->rememberToken();
    );

运行后php artisan migrate

[Illuminate\Database\QueryException] SQLSTATE[42000]:语法错误 或访问冲突:1075 表定义不正确;可以有 只有一个自动列,它必须被定义为一个键(SQL:创建 表 jadwal_praks (id int unsigned not null auto_increment 主键,thnajrn_id int unsigned not null auto_increment primary 键,prak_id int unsigned not null auto _increment 主键, hari_id int unsigned not null auto_increment 主键,jam_id int unsigned not nul l auto_increment 主键,ruang_id int unsigned not null auto_increment 主键,kap_id int unsigned not null auto_increment 主键,created_at timestamp null, updated_at 时间戳 null,remember_token v archar(100) null) 默认字符集 utf8 collat​​e utf8_unicode_ci)

还有这个

[PDOException] SQLSTATE[42000]:语法错误或访问冲突: 1075 表定义不正确;只能有一个自动列,并且 它必须被定义为一个键

【问题讨论】:

【参考方案1】:

根据我的观察,我会说您应该删除您添加到外部字段的 default 值(例如):

$table->integer('thnajrn_id', 10)->unsigned(); 

收件人:

$table->integer('thnajrn_id')->unsigned();

PS:有类似的经验,我知道目前这适用于我在 Laravel 5.2 中使用的一个项目。*

希望这会有所帮助:)

【讨论】:

【参考方案2】:

当你使用$table->integer('thnajrn_id', 10)->unsigned();这意味着您将第二个参数设置为 true,它代表 AutoIncrement

试试

table->integer('thnajrn_id')->length(10)->unsigned();

More info

【讨论】:

【参考方案3】:

当您使用$table->unsignedBigInteger('account_id')->nullable(); 时,您仍然会得到同样的错误,因为nullable() 产生的默认值会产生同样的错误。因此,请始终将外键留空,nullabledefault(0)

【讨论】:

以上是关于SQLSTATE[42000]:语法错误或访问冲突:1075 表定义不正确;只能有一个自动列,并且必须将其定义为键的主要内容,如果未能解决你的问题,请参考以下文章

Cakephp SQLSTATE [42000]:语法错误或访问冲突:1064

SQLSTATE [42000]:语法错误或访问冲突:1064 您的 SQL 语法有错误 - LARAVEL

Laravel 5.8 SQLSTATE [42000]:语法错误或访问冲突:1064 您的 SQL 语法有错误

带有消息“SQLSTATE [42000]”的未捕获异常“PDOException”:语法错误或访问冲突:

SQLSTATE [42000]:语法错误或访问冲突:1064 PHP/MySQL [关闭]

为啥我是 laravel 抛出 SQLSTATE[42000]:语法错误或访问冲突:1064 错误