博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql创建表过程中报1064错误
阅读量:6942 次
发布时间:2019-06-27

本文共 3176 字,大约阅读时间需要 10 分钟。

我在自己搭建的mysql服务中,在使用create table创建表时报了1064错误,尝试网上找了各种解决方法,最后还是被自己试着解决了。解决的有的稀里糊涂的,毕竟我自己对数据库知识还没个很清晰的认知。废话不多说了,下面看我的解决历程吧。

自己创建表的初衷:想要从无到有的尝试

set names utf8set foreign_key_checks=0drop table if exists `own_reimbursement`;create table `own_reimbursement` (    `id` int(10) not null AUTO_INCREMENT,    `start_time` date not null default,    `end_time` date not null default,    `travel_time` int(3) not null default,    `place_name` char(30) default comment '地名',    `project_name` char(30) default comment '项目名称',    `venue_name` char(30) default comment '场馆名称',    `personnel_name` char(30) default comment '人员',    `hotel_expense` float(7) default comment '住宿费',    `taxi_fare` float(7) not null default comment '打的费',    `travel_allowance` float(7) not null default comment '出差补助',    `road_fee` float(7) not null default comment '路费',    `subsidy` float(7) not null default comment '报销合计',    primary key (`id`)) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;BEGIN;INSERT INTO `own_reimbursement` VALUES ('1', '2018-08-22', '2018-08-31', '10', '江西景德镇','xx项目','xxxx运动中心','王思聪','1830','195.8','750','738','3513.8');COMMIT;SET FOREIGN_KEY_CHECKS = 1;

在执行时一直报1064错误,让我百思不得其解,还傻傻的以为真是version问题,还特意找了相关的version说明看(下了英文版的一脸懵逼的),无赖直接简单粗暴的在网上搜mysql 创建表示报1064错误,还真看到不少解决方法,但没一条适用的。

[SQL]set names utf8set foreign_key_checks=0drop table if exists `own_reimbursement`;[Err] 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 'set foreign_key_checks=0drop table if exists `own_reimbursement`' at line 2

网上解决版本:

1.查看create table 语句里面的表、列、索引都要反斜杠符号也可以不使用,但不能写成 '单引号。不然执行就会报1064错误了
2.不要使用mysql的保留字

我的错误是因为 没搞清楚default。去掉default后就成功了。

set names utf8;set foreign_key_checks = 0;drop table if exists `own_reimbursement`;create table `own_reimbursement` (    `id` int(10) not null AUTO_INCREMENT,    `start_time` date not null ,    `end_time` date not null ,    `travel_time` int(3) not null ,    `place_name` char(30) NOT NULL  comment '地名',    `project_name` char(30) NOT NULL  comment '项目名称',    `venue_name` char(30) NOT NULL comment '场馆名称',    `personnel_name` char(30) NOT NULL  comment '人员',    `hotel_expense` float(7)  comment '住宿费',    `taxi_fare` float(7) not null  comment '打的费',    `travel_allowance` float(7) not null  comment '出差补助',    `road_fee` float(7) not null  comment '路费',    `subsidy` float(7) not null  comment '报销合计',    primary key (`id`)) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;SET FOREIGN_KEY_CHECKS = 1;

原因:

default 修饰符
可以使用 DEFAULT 修饰符为字段设定一个默认值。
如果一个字段中没有指定 DEFAULT 修饰符,MySQL 会依据这个字段是 NULL 还是 NOT NULL 自动设置默认值。
如果指定字段可以为 NULL,则 MySQL 为其设置默认值为 NULL。
如果是 NOT NULL 字段,MySQL 对于数值类型插入 0,字符串类型插入空字符串,
时间戳类型插入当前日期和时间,ENUM 类型插入枚举组的第一条。

如果创建表时要使用default修饰符,那不要忘记在default后面加个默认值。

例如:

CREATE TABLE `websites` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` char(20) NOT NULL DEFAULT '' COMMENT '站点名称',  `url` varchar(255) NOT NULL DEFAULT '',  `alexa` int(11) NOT NULL DEFAULT '0' COMMENT 'Alexa 排名',  `country` char(10) NOT NULL DEFAULT '' COMMENT '国家',  PRIMARY KEY (`id`)) ENGINE=InnoDB  DEFAULT CHARSET=utf8;

转载于:https://blog.51cto.com/000011211684/2298122

你可能感兴趣的文章
java 从通过网址获取网页图片
查看>>
linux系统本地yum服务配置
查看>>
Jav词汇表(六)U——Z
查看>>
linux shell 数组建立及使用技巧
查看>>
图像处理之高斯一阶及二阶导数计算
查看>>
mysql5.5安装配置
查看>>
华为认证HCDA免费公开课课表及其交流群公告
查看>>
第14 章批量处理(Batch processing)
查看>>
形式语言之语言和语法树
查看>>
AWK 常用小技巧
查看>>
centos6.2-64位快速部署hadoop-1.0.4.tar.gz 和 jdk-7u17-linux-x64.tar.gz
查看>>
004-关闭文件后自动备份
查看>>
js实现当前导航菜单高亮显示
查看>>
那些没按时结婚的人,最后都怎么样了?丨可读
查看>>
Nagios监控ESXI主机系统、硬件、nagios日志文件时间格式转换
查看>>
如何保证TMG服务器安装客户端后仍能与Nagios服务器正常通信?
查看>>
leofs 对象存储中一匹黑马
查看>>
vim
查看>>
opencart 为品牌管理增加检索名称和状态项
查看>>
友友系统:让云计算更加贴近用户
查看>>