其他分享
首页 > 其他分享> > 实习第五天10.12

实习第五天10.12

作者:互联网

1.mysql连接失败:Can't connect to MySQL server on xxx (10061)

参考:https://jingyan.baidu.com/article/a681b0de5ac1dc3b1943467d.html

解决方法:1).快捷键“win+r”打开【运行】,然后在文本框输入“services.msc”后点击【确定】或回车,就能打开服务窗口

     2)在服务窗口找到mysql并运行:

     3)如果服务中没有mysql则安装:cmd中输入mysqld -install

2.阿里云的max compute与MySQL的区别:

https://help.aliyun.com/document_detail/50985.html?spm=a2c4g.11186623.2.11.691d17d0vvY3WM

3.给sql的表按照老字段添加一个新字段()

ALTER TABLE testalter_tbl ADD i INT;

将字符串 abc 中的字符 a 替换为字符 x:

SELECT REPLACE('abc','a','x') 

  注意:1.abc可以放字段名  2.replace可以嵌套使用起到多次修改的作用

  CONCAT(s1,s2,s3)返回s1+s2+s3的结果。


 

标签:abc,s3,mysql,https,MySQL,实习,第五天,10.12,com
来源: https://www.cnblogs.com/StarZhai/p/11658375.html