gpt4 book ai didi

php - 1064 `wp_commentmeta` 上的 SQL 语法错误

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

上传数据库时,我在 PhPMyAdmin 上收到以下错误 - 我是否删除了关键代码行?

-- phpMyAdmin SQL Dump
-- version 2.8.0.1
-- http://www.phpmyadmin.net
--
-- Host: custsql-ipg100.eigbox.net
-- Generation Time: Mar 16, 2015 at 05:46 PM
-- Server version: 5.5.40
-- PHP Version: 4.4.9
--
-- Database: `wrd_2macd1bm7n`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (

`meta_id` BIGINT( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
`comment_id` BIGINT( 20 ) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` VARCHAR( 255 ) DEFAULT NULL ,
`meta_value` LONGTEXT,
PRIMARY KEY ( `meta_id` ) ,
KEY `comment_id` ( `comment_id` ) ,
KEY `meta_key` ( `meta_key` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8 AUTO_INCREMENT =1;

这是错误消息:

#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 wp_commentmeta ( meta_id bigint(20) unsigned NOT NULL A' at line 1

最佳答案

导致此错误的最可能原因是上一条语句中缺少分号。也就是说,MySQL 对 CREATE TABLE 的出现犹豫不决,因为它将其视为未终止的先前语句(的一部分)的延续。

关于php - 1064 `wp_commentmeta` 上的 SQL 语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29376863/

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