mysql自己遇到的一些小问题

1、MySql : [ERR] 1064 - You have an error in your SQL syntax; check the manual
此问题是 MySql 语法上的错误,在 MySQL 中,为了区分 MySQL 的关键字与普通字符,MySQL 引入了一个反引号。
在上述的 sql 语句中,列名称没有使用反引号或者列名称使用单引号,都会报这个错误出来。

2、ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)
自己在cmd输入mysql -u root -p出现的,解决方案:
(1)、cmd启动服务手动打开mysql服务
(2)、推荐第二种就是在cmd直接输入net start mysql80这样

3、mysql8.0遇到loadinfile文件出现的问题:

https://blog.csdn.net/qinglingls/article/details/88981950

4、mysql 中count和sum的区别

https://blog.csdn.net/weixin_39621687/article/details/81166684

https://blog.csdn.net/qq_32345239/article/details/52288013

5、面试

https://blog.csdn.net/u013382288/article/details/80390324

https://blog.csdn.net/lcg29/article/details/82973992

https://blog.csdn.net/u013382288/article/details/80417681

https://blog.csdn.net/fwj_ntu/article/details/78832332

https://www.jianshu.com/p/77597eadd3cc

https://www.cnblogs.com/eternal-immortal/p/9482705.html

https://ask.julyedu.com/question/85278

https://www.zhihu.com/question/47760443/answer/404494610

https://www.jianshu.com/p/84de25b9e7f5

你可能感兴趣的:(mysql自己遇到的一些小问题)