# 批量插入数据库数据,有则更新,无则追加import pymysqlimport numpy as npimport pandas as pdconn = pymysql.connect( host='127.0.0.1', port=3306, user='root', passwd='root ...
分类:
数据库 时间:
2019-06-21 12:36:36
阅读次数:
226
题目如下: Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements ...
分类:
其他好文 时间:
2019-06-18 13:58:59
阅读次数:
128
网上写写题 提高下自己的能力。 Mysql平时写的是真的很少,所以训练一下下。 1.查找重复的电子邮箱 https://leetcode-cn.com/problems/duplicate-emails/ 我的解法: select distinct(t1.Email) from Person t1, ...
分类:
数据库 时间:
2019-06-17 17:29:39
阅读次数:
147
GSVA的简介 Gene Set Variation Analysis,被称为基因集变异分析,是一种非参数的无监督分析方法,主要用来评估芯片核转录组的基因集富集结果。主要是通过将基因在不同样品间的表达量矩阵转化成基因集在样品间的表达量矩阵,从而来评估不同的代谢通路在不同样品间是否富集。其实就是研究这 ...
分类:
其他好文 时间:
2019-06-17 14:15:50
阅读次数:
2005
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the ...
分类:
其他好文 时间:
2019-06-13 20:27:21
阅读次数:
120
查看主从状态 查看主从状态 主服务器 主服务器 mysql> show master status; mysql> show master status; + + + + + + + + + + + + | File ? ? ? ? ? ? | Position ?| Binlog_Do_DB | ...
分类:
数据库 时间:
2019-06-13 12:10:36
阅读次数:
99
Docker从1.13版本之后采用时间线的方式作为版本号,分为社区版CE和企业版EE。 社区版是免费提供给个人开发者和小型团体使用的,企业版会提供额外的收费服务,比如经过官方测试认证过的基础设施、容器、插件等。 社区版按照stable和edge两种方式发布,每个季度更新stable版本,如17.06 ...
分类:
其他好文 时间:
2019-06-13 00:47:12
阅读次数:
135
ALTER TABLE table1 ADD COLUMN column1 VARCHAR(400) DEFAULT NULL; ERROR 1062 (23000): Duplicate entry '82133627' for key 'PRIMARY' select * from table1 ...
分类:
其他好文 时间:
2019-06-12 21:27:04
阅读次数:
188
1. 找出两个链表的交点 2. 链表反转 3. 归并两个有序的链表 4. 从有序链表中删除重复节点 5. 删除链表的倒数第 n 个节点 6. 交换链表中的相邻结点 7. 链表求和 8. 回文链表 9. 分隔链表 10. 链表元素按奇偶聚集 链表是空节点,或者有一个值和一个指向下一个链表的指针,因此很 ...
分类:
其他好文 时间:
2019-06-12 14:02:43
阅读次数:
154
VSCODE 配置eslint规则和自动修复 vscode安装以下插件 EsLint、vetur、Prettier Code formatter vscode设置了添加配置项,,默认会去查找你项目中的eslint配置文件 项目中创建.eslitrc.js配置 文件,可能比较多 Done 还看,没了, ...
分类:
其他好文 时间:
2019-06-07 19:03:57
阅读次数:
1322