下载安装包:wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.28-linux-glibc2.12-x86_64.tar.gz(1)首先卸载mariadb,不然后面会和安装mysql需要的库冲突: [root@localhost ~] ...
分类:
数据库 时间:
2021-04-15 12:11:33
阅读次数:
0
hive提取字符串中域名的sql方法 需求如下: 想取如下字段里的访问的域名: "GET http://suo.im/4xhnBL HTTP/1.1" "CONNECT sapi.ads.544.com:443 HTTP/1.1" "GET http://100.110.1.52:8080/job/ ...
分类:
数据库 时间:
2021-04-14 12:16:48
阅读次数:
0
在上一篇文章中,我们比较出单表插入9999行数据,Dapper > EfCore > Freesql。在本文中,我们来看看级联插入 构建9999行数据 List<Entity> datas = new List<Entity>(); for (int i = 0; i < 9999; i++) { ...
分类:
移动开发 时间:
2021-04-14 12:13:34
阅读次数:
0
方法 含义 备注 查询 select distinct name, id from table 对name一列去重 ...
分类:
数据库 时间:
2021-04-14 12:10:14
阅读次数:
0
1、安装jupyter_contrib_nbextensions: pip install jupyter_contrib_nbextensions jupyter contrib nbextension install --user 2、安装jupyter_nbextensions_configu ...
分类:
其他好文 时间:
2021-04-13 12:24:36
阅读次数:
0
时间工具类 import java.time.*; import java.time.format.DateTimeFormatter; import java.util.Date; public class TimeUtil { /** * 北京时间 */ private static final ...
分类:
编程语言 时间:
2021-04-13 12:01:10
阅读次数:
0
1.父元素设置:text-align : center; 2.转化成块元素并设置宽度,设置margin : 0 auto; <div class="box"> <!-- <input id="input1" type="text"> --> <sapn id="input1">22222</sapn ...
分类:
其他好文 时间:
2021-04-12 12:52:10
阅读次数:
0
四则运算代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ClassLibrary1{ public ...
分类:
其他好文 时间:
2021-04-12 12:51:16
阅读次数:
0
<用例视图> 1 用例图的目标 who「参与者」:确定谁要使用系统 what「功能」:他们使用系统做什么? 2 用例图-四大主要组件 2.1 参与者 参与者:与应用程序或系统进行交互的用户、组织或外部系统。用一个小人表示。 2.2 用例 用例:用例就是外部可见的系统功能,对系统提供的服务进行描述。用 ...
分类:
其他好文 时间:
2021-04-12 12:39:49
阅读次数:
0
链表-快慢指针结束条件总结 步长为2:fast = fast.next.next; 步长为1:fast = fast.next; 步长为2+while(fast!=null&&fast.next!=null) 终止条件为: fast==null或者fast.next==null 最终fast有可能为 ...
分类:
其他好文 时间:
2021-04-12 12:33:43
阅读次数:
0