09 2017 档案

摘要:CREATE TABLE temp2 AS SELECT MAX(id) id FROM sys_oper_procenter GROUP BY pro_title 创建一个temp2的表 根据标题分组,取最大的id 将id存入temp2表中 DELETE FROM sys_oper_procenter WHERE id NOT IN(SELECT id FROM temp2) ... 阅读全文
posted @ 2017-09-25 13:32 破晓e 阅读(289) 评论(0) 推荐(0)
摘要:第一步:下载python2.7 wget https://www.Python.org/ftp/python/2.7.12/Python-2.7.12.tar.xz 第二步: 解压刚刚下载的压缩包 #tar -xvf Python-2.7.12.tar.xz 第三步:新建安装目录 mkdir /us 阅读全文
posted @ 2017-09-02 12:43 破晓e 阅读(4698) 评论(0) 推荐(0)