mysql5建函数报1064错误_Mysql创建表过程中报1064错误

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

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

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 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 utf8

set foreign_key_checks=0

drop 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=0

drop 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;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值