select 1 as id,'是' as text from dual union all select 0 as id ,'否' as text from dual 同时查询出十条数据 select * from dual connect by 0 + level <= 10; 按照这个特性计算 ...
分类:
数据库 时间:
2021-06-28 18:48:46
阅读次数:
0
tag:重心,dp,组合计数 晕呼呼地计数... 题意 求 \(n\) 个点的不同的树的个数(同构视为一种,无标号),使得每个点的度数为 \(1\) 或 \(d\)。 \(n\le1000, 2\le d\le10\) 题解 无标号树同构问题一般想到找重心,把重心作为根,这里先假设重心唯一(\(n\ ...
分类:
其他好文 时间:
2021-06-28 18:37:31
阅读次数:
0
kubernetes的三种探针 startupprobe: k8s1.16版本后新加的探测方式,用于判断容器内应用程序是否已经启动,如果配置了startuprobe,就会先禁用其他的探测,直到它成功为止,成功后将不再进行探测。 ReadinessProbe: 一般用于探测容器内的程序是否健康,它的返 ...
分类:
Web程序 时间:
2021-06-28 18:32:30
阅读次数:
0
一、大数据的基本特征(4V,存储单位) 二、大数据对思维方式的影响 三、Google 三辆马车是什么? Google的文件系统GFS(Google File System)、分布式计算框架MapReduce、Bigtable 四、Hadoop 是什么,基本特征 基本特征: 五、Hadoop 生态系统 ...
分类:
其他好文 时间:
2021-06-28 18:27:13
阅读次数:
0
1、在查询中根据A字段关联另一个表,并用另一个表A字段对应的另一个字段替换本表中A字段的值。 virtualid表,两列label, number;virtualid_zd表,两列name, number,怎么在查询 ...
分类:
数据库 时间:
2021-06-28 18:26:05
阅读次数:
0
<?php $cfg_NotPrintHead = false; header("Content-Type: text/html; charset=utf-8"); include_once (dirname(__FILE__)."/../include/common.inc.php"); erro ...
unit DataStructUnit; interface type txmlvulrd =record sname:string; svul:string; end; txmlbasedDataStruct = class private Fifissubitem: Boolean; funct ...
分类:
其他好文 时间:
2021-06-28 18:17:02
阅读次数:
0
粘包问题及解决方案 一 什么是粘包问题 前提:只有TCP会发生粘包现象,UDP永远不会粘包。 粘包问题本质上就是接收方不知道消息的边界,不知道一次性该提取多少字节流用于解析消息,造成的消息解析错误问题。 二 为何么会有粘包问题 1 socket收发消息的原理之流式协议 ? 发送端可以是1K1K的发送 ...
分类:
其他好文 时间:
2021-06-25 17:27:19
阅读次数:
0
1.去官网下载安装包http://www.oracle.com/technetwork/topics/winx64soft-089540.html 2.1instantclient-basic-windows.x64-19.11.0.0.0.zip 2.2instantclient-sqlplus- ...
分类:
数据库 时间:
2021-06-25 17:25:38
阅读次数:
0
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace DesignPatt ...
分类:
其他好文 时间:
2021-06-25 17:21:57
阅读次数:
0