摘要: 通过explain分析SQL 数据库会先进行计划分析,再进行查询。执行计划从侧面反映了SQL的执行效率,那么通过explain查看并分析执行计划是非常有必要的 mysql> explain select * from lm_d_plan group by fk_deptno; + + + + + + 阅读全文
posted @ 2017-10-12 15:44 犀利瓜 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 准备工作上传本地代码到github 准备工作 上传本地代码到github<!--more--> git init git add . git commit -m '代码以后就开源了' git remote add origin https://github.com/lujiang618/kfzphp 阅读全文
posted @ 2017-10-12 10:06 犀利瓜 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 安装git yum -y install git git-core git version #查看git版本,确认安装是否成功。 生成私钥和公钥 cd ~/.ssh ls ssh-keygen -t rsa -C "*****@163.com" //不要输入密码,否则以后很麻烦 cat ~/.ssh 阅读全文
posted @ 2017-10-12 10:01 犀利瓜 阅读(141) 评论(0) 推荐(0) 编辑