mysql&&check the manual that corresponds to your MySQL server version

数据库&&mysql&&check the manual that corresponds to your MySQL server version

datetime相关

问题现象:

mysql> CREATE TABLE `django_session` (
    ->   `session_key` varchar(40) NOT NULL,
    ->   `session_data` longtext NOT NULL,
    ->   `expire_date` datetime(6) NOT NULL,
    ->    PRIMARY KEY (`session_key`),
    ->    KEY `django_session_expire_date_a5c62663` (`expire_date`)
    -> ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
ERROR 1064 (42000): 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 '(6)',
   PRIMARY KEY (`session_key`),
   KEY `django_session_expire_da' at line 4

问题分析:
问题产生的根本原因是由于mysql版本的不同,mysql5.5版本不支持"datetime(6)"的写法,改成“datetime”就可以了。
解决方法:

mysql> CREATE TABLE `django_session` (
    ->   `session_key` varchar(40) NOT NULL,
    ->   `session_data` longtext NOT NULL,
    ->   `expire_date` datetime NOT NULL,
    ->    PRIMARY KEY (`session_key`),
    ->    KEY `django_session_expire_date_a5c62663` (`expire_date`)
    -> ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
Query OK, 0 rows affected (0.02 sec)

参考链接:
https://blog.csdn.net/qq_39625079/article/details/87865956

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值