大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说Django中创建数据库报错: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 ‘=utf8’ at line 1解决方案,希望您对编程的造诣更进一步.
一、问题描述
Django中执行create database 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 ‘=utf8‘ at line 1
二、问题原因
数据库名称没有用反引号引起来
三、解决方案
创建数据库时使用以下命令即可:
create ‘ database‘ charset=utf8;
Django中创建数据库报错: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 ‘=utf8’ at line 1解决方案
原文地址:https://www.cnblogs.com/lxmtx/p/13334473.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/7295.html