摘要:
今天在安装MySQL5.7的过程中,需要使用update mysql.user set authentication_string=password('123456') where user='root' and Host= 'localhost';修改密码 结果报了个错,说是没有数据库被选择 在网 阅读全文
摘要:
在使用commander和shelljs开发终端命令行的过程中,发现只要一运行所开发的命令,就会出现大段警告,类似这样: (Use `node --trace-warnings ...` to show where the warning was created) (node:11591) Warn 阅读全文
摘要:
MySQL除增删改查还需要了解的内容 1.分页和排序 分页:limit 排序:order by asc(正序)/desc(倒序) 例子: SELECT * FROM student s INNER JOIN `result` r ON s.StudentNo = r.StudentNo INNER 阅读全文