0
のインポート:私は私の新しいサーバーに私のSQLデータをアップロードしようとすると、私はこのエラーを受け取るSQLクエリサーバー側のエラー
SQL query:
--
-- Database: `dacwp0_brainhappy_ca`
--
`dacwp0_brainhappy_ca` ;
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax
to use near '`dacwp0_brainhappy_ca`' at line 4
私のインポートした.sqlファイルの先頭には、
-- phpMyAdmin SQL Dump
-- version v0.1-int.sec.2.10.0.2
-- http://www.phpmyadmin.net
--
-- Host: shiku
-- Generation Time: Sep 22, 2016 at 10:48 PM
-- Server version: 5.1.66
-- PHP Version: 5.3.29
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `dacwp0_brainhappy_ca`
--
`dacwp0_brainhappy_ca`;
を私は真剣に何をすべきか分からなくなった。ここにいるどんなmySQLの達人ですか?
ため
参照MySQL Documentation On USE Syntaxする必要がありますが、偶然、そのphpmyadminのダンプファイルを編集しましたか?あなたの例の最後の行は 'use dacwp0_brainhappy_ca;'と答えるべきです。 –