docker 的安装 yum update sudo yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 安装docker: sudo yum instal ...
分类:
其他好文 时间:
2021-02-25 12:03:20
阅读次数:
0
<H3C>dis cu # version 7.1.070, Release 6318P01 # sysname H3C # irf mac-address persistent timer irf auto-update enable undo irf link-delay irf member ...
分类:
其他好文 时间:
2021-02-25 11:57:16
阅读次数:
0
\(\text{Problem}:\)题目链接 \(\text{Solution}:\) 记一个状态为有序三元组 \((x,y,z)\)。 当 \(x<y<z\) 时,考虑先手一步必胜的情况:当 \(z-y=y-x\) 且后手上一步选了 \(z\) 时,先手给定 \(z-y\) 这个数。 当 \(x ...
分类:
其他好文 时间:
2021-02-24 13:02:04
阅读次数:
0
主要是这两个sql start_log(利用get_json_object函数): insert overwrite table "$app".dwd_start_log PARTITION (dt='$do_date') select get_json_object(line,'$.mid') m ...
分类:
数据库 时间:
2021-02-23 14:36:54
阅读次数:
0
Oracle OCP 19c 认证1Z0-082考试题库(第5题)-CUUG收集整理 5.A database is configured to use automatic undo management with temporary undo enabled. An UPDATE is execu ...
分类:
数据库 时间:
2021-02-23 14:07:10
阅读次数:
0
1,sudo apt update 2,sudo apt install ffmpeg 3,安装成功后查看【版本】【编码器】【解码器】 ffmpeg -v ffmpeg -encoders ffmpeg -decoders 4,安装需要用的各种组件 sudo apt-get install liba ...
分类:
系统相关 时间:
2021-02-23 13:58:57
阅读次数:
0
语法: UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值如何更新部分数据呢? where是用来限制更新的条件,limit限制更新条数 SELECT * FROM cs_country LIMIT 5,10; UPDATE cs_country SET population ...
分类:
数据库 时间:
2021-02-22 11:50:04
阅读次数:
0
mysql8: alter user 'root'@'localhost' identified by '123456'; mysql5.7: update user set authentication_string = password('123456') where user = 'root' ...
分类:
数据库 时间:
2021-02-22 11:45:52
阅读次数:
0
1、on duplicate key 场景: a、copy代码 b、原代码中insert唯一键冲突失败后需要进行update操作,此时正常 c、copy后的场景中有部分字段是不需要覆盖的,会导致将有值的覆盖成null 坑级:????? 由于代码路径在xml,非常难检测到。并且on duplicate ...
分类:
其他好文 时间:
2021-02-20 12:42:50
阅读次数:
0
批量插入 xml如下: <insert id ="batchInsert" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id"> insert into t_person(name, age, height, ...
分类:
其他好文 时间:
2021-02-20 12:17:17
阅读次数:
0