Mysql数据库使用笔记
1、mysql的安装
https://www.cnblogs.com/qiaoconglovelife/p/5477832.html (Windows版本)
https://www.cnblogs.com/jintheway/p/6542059.html (Linux版本)
2、远程连接
windows https://blog.csdn.net/yang5726685/article/details/52529082
步骤:
一、打开mysql控制台,输入:use mysql;
二、输入:show tables;
三、输入:select host from user;
四、输入:update user set host ='%' where user ='root';
五、打开计算机的服务界面,重新启动mysql服务,远程服务器就允许程序连接数据库了。
查看端口 show global variables like 'port';
linux https://www.cnblogs.com/fnlingnzb-learner/p/5830661.html
3、小写不敏感
lower_case_table_names=1
websocket
https://blog.csdn.net/qq562029186/article/details/81203893?utm_source=blogxgwz8
https://www.cnblogs.com/t0000/articles/9667575.html
https://blog.csdn.net/qq562029186/article/details/81203893
https://blog.csdn.net/wu0che28/article/details/83032057