1、
如何远程访问别人的MySQL数据库 - curryzwy - 博客园 (cnblogs.com)https://www.cnblogs.com/curryzwy/p/15730485.html
2、
mysql——同一局域网如何共同访问一台电脑的数据库(胎教级教学)_七月星辰的博客-CSDN博客_两台电脑共用一个mysql数据库https://blog.csdn.net/qq_45152044/article/details/122606242
3、关于语法的解决方案:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your_阿雄不会写代码的博客-CSDN博客https://blog.csdn.net/qq_57309855/article/details/127602061
3.1、授权及撤权的操作:(授权用to ,撤权用from)
【MySQL数据库】 - 授权与撤销授权_Elisa011的博客-CSDN博客_数据库撤销用户的查询与列的修改权限数据库授权、数据库撤销权限https://blog.csdn.net/m0_64750119/article/details/127215996
4、自己测试的方案、
4.1、全部权限(需要测试)
create user root@'192.168.1.216' identified by '123456';
grant all privileges on root.* to root@'192.168.1.216';
flush privileges;
4.2、只有select权限(需要测试)
create user root@'192.168.1.216' identified by '123456';
grant select on root.* to root@'192.168.1.216';
flush privileges;
5、
6、
7、
8、
9、
10、