簡體   English   中英

錯誤:SQLSTATE[42000]:語法錯誤或訪問沖突:1064 您的 SQL 語法有錯誤;

[英]Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax;

我想使用 laravel 遷移我的數據庫。
我嘗試這個命令: php artisan migrate:fresh --seed並采取這個錯誤:

Migrating: 2019_10_28_130723_alter_users_table

   Illuminate\Database\QueryException  : SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB ser
ver version for the right syntax to use near 'CHARACTER SET utf8mb4 DEFAULT 0 NOT NULL COLLATE `utf8mb4_unicode_ci`' at line 1 (SQL: ALTER TABLE users CHANGE deductible_amount deductible_a
mount BIGINT UNSIGNED CHARACTER SET utf8mb4 DEFAULT 0 NOT NULL COLLATE `utf8mb4_unicode_ci`)

  at C:\xampp\htdocs\project\vendor\laravel\framework\src\Illuminate\Database\Connection.php:664
    660|         // If an exception occurs when attempting to run a query, we'll format the error
    661|         // message to include the bindings with SQL, which will make this exception a
    662|         // lot more helpful to the developer instead of just the database's errors.
    663|         catch (Exception $e) {
  > 664|             throw new QueryException(
    665|                 $query, $this->prepareBindings($bindings), $e
    666|             );
    667|         }
    668|

  Exception trace:

  1   Doctrine\DBAL\Driver\PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB s
erver version for the right syntax to use near 'CHARACTER SET utf8mb4 DEFAULT 0 NOT NULL COLLATE `utf8mb4_unicode_ci`' at line 1")
      C:\xampp\htdocs\project\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver\PDOConnection.php:63

  2   PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the
 right syntax to use near 'CHARACTER SET utf8mb4 DEFAULT 0 NOT NULL COLLATE `utf8mb4_unicode_ci`' at line 1")
      C:\xampp\htdocs\project\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver\PDOConnection.php:61

  Please use the argument -v to see more details.

這是我的2019_10_28_130723_alter_users_table遷移文件的內容:

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AlterUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->renameColumn('active', 'is_active');
            $table->dropColumn([
                                    'settings',
                                    'google_id',
                                    'github_id',
                                    'telegram_notif',
                                    'income',
                                    'email_notif',
                                    'sms_notif',
                                    'temppass',
                                    'storm_id',
                               ]);
            $table->unsignedBigInteger('deductible_amount')->change();
            $table->softDeletes();
        });
    }



    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->renameColumn('is_active', 'active');
            $table->text('settings');
            $table->string('google_id')->nullable();
            $table->string('github_id')->nullable();
            $table->boolean('telegram_notif')->default(true);
            $table->string('income')->nullable();
            $table->boolean('email_notif')->default(true);
            $table->boolean('sms_notif')->default(false);
            $table->string('temppass')->nullable();
            $table->string('storm_id')->default(null)->nullable();
            $table->string('deductible_amount')->after('wallet')->default('0')->change();
            $table->dropSoftDeletes();
        });
    }
}

我不知道如何解決這個問題。 我已經搜索過了,但大多數答案都提到了一個必須轉換為stringjson字段,我的users表上沒有json字段。 問題出在哪里,我該如何解決?

此行會導致您的遷移出錯。

$table->unsignedBigInteger('deductible_amount')->change();

嘗試將其更改為

$table->string('deductible_amount')->unsigned()->change();

針對您的情況更新了答案。

        Schema::table('users', function (Blueprint $table) {
            $table->unsignedBigInteger('deductible_amount_new');
        });

        DB::statement('UPDATE `users` SET deductible_amount_new=deductible_amount ');

        Schema::table('users', function (Blueprint $table) {
            $table->renameColumn('active', 'is_active');
            $table->dropColumn([
                                    'settings',
                                    'google_id',
                                    'github_id',
                                    'telegram_notif',
                                    'income',
                                    'email_notif',
                                    'sms_notif',
                                    'temppass',
                                    'storm_id',
                               ]);
            $table->dropColumn('deductible_amount');
            $table->softDeletes();
        });

        Schema::table('users', function (Blueprint $table) {
            $table->renameColumn('deductible_amount_new', 'deductible_amount');
        });

我希望它可以幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM