gpt4 book ai didi

mysql - 好奇sql导入语法错误

转载 作者:行者123 更新时间:2023-11-29 01:56:53 25 4
gpt4 key购买 nike

我正在将一个 MySQL 数据库从我的笔记本电脑重新导入到 PC。我导出了我的 WAMP MySQL .sql 文件,现在正尝试将其导入我的 PC。这在过去一直有效,从那以后我只改变了几个表......但现在我收到以下错误:

  #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
'CREATE TABLE IF NOT EXISTS `join_quests_npcs` (
`jqn_id` int(6) NOT NULL AUTO_' at line 16

信息:

Desktop WAMP MySQL ver: `5.5.16`, 
Laptop WAMP MySQL ver: `5.6.12`
File to import: char set of file: `utf 8`
Format: `sql`
Format-specific options: SQL compatibility mode: `none`

但我不认为 WAMP 版本中的这种小差异会导致这样的语法错误。

我也没有发现它所提示的有什么问题...这是它从导出的 .sql 文件中提示的 block ,我现在正尝试导入:

CREATE TABLE IF NOT EXISTS `join_quests_npcs` (
`jqn_id` int(6) NOT NULL AUTO_INCREMENT,
`quest_id` int(6) NOT NULL,
`npc_id` int(6) NOT NULL,
PRIMARY KEY (`jqn_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;

有什么想法吗?

谢谢!


编辑:

也很好奇:

.sql 文件中的第一个表已成功创建:

-- phpMyAdmin SQL Dump
-- version 4.0.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 27, 2014 at 09:15 PM
-- Server version: 5.6.12-log
-- PHP Version: 5.4.12

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `my_test_db_2014`
--
CREATE DATABASE IF NOT EXISTS `my_test_db_2014` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `my_test_db_2014`;

-- --------------------------------------------------------

--
-- Table structure for table `gather_items`
--
CREATE TABLE IF NOT EXISTS `gather_items` (
`item_id` int(6) NOT NULL,
`item_name` varchar(100) NOT NULL,
`item_chinese` varchar(100) NOT NULL,
`item_x` int(6) NOT NULL,
`item_y` int(6) NOT NULL,
`item_image` varchar(255) NOT NULL,
`item_total` int(1) NOT NULL,
`item_cost` int(11) NOT NULL,
PRIMARY KEY (`item_id`),
UNIQUE KEY `gather_item_id` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `gather_items`
--

INSERT INTO `gather_items` (`item_id`, `item_name`, `item_chinese`, `item_x`, `item_y`, `item_image`, `item_total`, `item_cost`) VALUES

(1, 'rice', 'fàn', 60, 255, 'data/img/sprite/rice.png', 1, 10),
(2, 'water', 'shui', 30, 400, 'data/img/sprite/poly.png', 3, 40),
(3, 'meat', 'rou', 500, 100, 'data/img/sprite/meat.png', 1, 100);

-- --------------------------------------------------------

创建此表时出错:

--
-- Table structure for table `join_quests_npcs`
--

CREATE TABLE IF NOT EXISTS `join_quests_npcs` (
`jqn_id` int(6) NOT NULL AUTO_INCREMENT,
`quest_id` int(6) NOT NULL,
`npc_id` int(6) NOT NULL,
PRIMARY KEY (`jqn_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;

编辑 2:

所以我删除了 join_quest_npcs 表创建,看看它是否仍然会提示,现在它在下面的下一个 block 中再次出错......所以我认为它与 gather_items 有某种关系 第一个表创建。

#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 'CREATE TABLE IF NOT EXISTS `levels` (
`level_id` int(11) NOT NULL,
`levelnam' at line 17

SQL block :

--
-- Table structure for table `levels`
--

CREATE TABLE IF NOT EXISTS `levels` (
`level_id` int(11) NOT NULL,
`levelname` varchar(255) NOT NULL,
`associatedQuestIDs` varchar(255) NOT NULL,
PRIMARY KEY (`level_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `levels`
--

INSERT INTO `levels` (`level_id`, `levelname`, `associatedQuestIDs`) VALUES
(1, 'mymap', '101 102 103'),
(2, 'mymap2', '201 202');

最佳答案

找到了。问题来自第一个表创建:gather_items,而不是来自 MySQL 提示的地方......

具体来说,就是从插入这一行开始的,其中包含一个utf-8特殊字符,fàn。重音符号打断了插入。

(1, 'rice', 'fàn', 60, 255, 'data/img/sprite/rice.png', 1, 10),

当我插入纯文本时,fan,所有行都被正确插入。

我认为问题是因为即使我使用默认 charset=UTF8 创建表

ENGINE=InnoDB DEFAULT CHARSET=utf8;

即使我在导入到 utf8 时指定了我的字符集:

enter image description here

数据库导入脚本指定字符集latin1:

CREATE DATABASE IF NOT EXISTS `my_test_db_2014` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;

所以,我需要将脚本的DEFAULT CHARACTER SET更改为utf8

您还需要将 latin1_swedish_ci 更改为正确的排序规则,如此处指定的 utf8_general_ci:http://dev.mysql.com/doc/refman/5.5/en/charset-charsets.html

关于mysql - 好奇sql导入语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26596432/

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