将表定义上载到phpmyadmin时出错

jm2pwxwz  于 2021-06-25  发布在  Mysql
关注(0)|答案(1)|浏览(310)

这是我试图在phpmyadmin中上载到数据库的.sql文件。

-- phpMyAdmin SQL Dump
-- version 4.0.10.14
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Dec 03, 2016 at 01:46 AM
-- Server version: 10.0.28-MariaDB
-- PHP Version: 5.6.20

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: `cryptic`
--

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

--
-- Table structure for table `cryptic_gameplay`
--

CREATE TABLE IF NOT EXISTS `cryptic_gameplay` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `level` int(2) NOT NULL,
  `clear_time` datetime DEFAULT NULL,
  `attempts` int(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;

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

--
-- Table structure for table `cryptic_login_log`
--

CREATE TABLE IF NOT EXISTS `cryptic_login_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `ip` varchar(255) NOT NULL,
  `status` int(2) NOT NULL DEFAULT '0',
  `count` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1s;

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

--
-- Table structure for table `cryptic_questions`
--

CREATE TABLE IF NOT EXISTS `cryptic_questions` (
  `level` int(11) NOT NULL,
  `hint1` text NOT NULL,
  `hint2` text NOT NULL,
  `answer` varchar(60) NOT NULL,
  PRIMARY KEY (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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

--
-- Table structure for table `cryptic_users`
--

CREATE TABLE IF NOT EXISTS `cryptic_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(25) NOT NULL,
  `email` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `name` varchar(60) NOT NULL,
  `status` int(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000;

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

--
-- Table structure for table `cryptic_user_stats`
--

CREATE TABLE IF NOT EXISTS `cryptic_user_stats` (
  `user_id` int(11) NOT NULL,
  `level` int(2) NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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

但是,我犯了个错误。
sql查询:

--表结构,用于表cryptic\u login\u log

CREATE TABLE IF NOT EXISTS `cryptic_login_log` (
    `id` int(11) NOT NULL AUTO_INCREMENT, 
    `user_id` int(11) NOT NULL, 
    `ip` varchar(255) NOT NULL, 
    `status` int(2) NOT NULL DEFAULT '0', 
    `count` int(11) NOT NULL DEFAULT '1', 
    PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1s

mysql说:文档

1064-您的sql语法有错误;检查与您的mariadb服务器版本相对应的手册,在第14行的“1s”附近使用正确的语法

谁能告诉我怎么了吗。这段代码实际上来自一个github项目,该项目是关于在php上创建一个神秘的搜索。我是新来的php和尝试学习,我得到了这个错误,而试图按照指示。
这是“谜/神秘狩猎”项目的链接

sf6xfgos

sf6xfgos1#

把“s”去掉就行了 AUTO_INCREMENT=1s;cryptic_login_log 表定义。

相关问题