带有ANY、IN或SOME的子查询1.operandcomparison_operatorANY(subquery)2.operandIN(subquery)3.operandcomparison_operatorSOME(subquery)其中comparison_operator是以下运算符之一:1.=><>=<=<>!=ANY关键字必须跟在比较运算符之后,
分类:
数据库 时间:
2020-12-09 11:37:13
阅读次数:
9
TSynDictionary mormot.core.json.pas /// thread-safe dictionary to store some values from associated keys // - will maintain a dynamic array of values, ...
分类:
其他好文 时间:
2020-12-07 12:26:55
阅读次数:
5
插槽内容 简单的插槽:slot标签内会渲染出"插槽内容" <div id="app"> <p>{{message}}</p> <item-list :items='items'> 插槽内容 </item-list> </div> <script> Vue.component('item-list', ...
分类:
其他好文 时间:
2020-12-05 10:47:14
阅读次数:
8
题目 Petya has equal wooden bars of length n. He wants to make a frame for two equal doors. Each frame has two vertical (left and right) sides of length ...
分类:
其他好文 时间:
2020-11-30 16:00:25
阅读次数:
6
正则表达式 元字符 . 任意的一个字符,可以表达汉子 * 前面的字符重复任意次 (wang)* 表示wang重复 X+ 重复1此以上 X{n,} 最少n次 X{m,n} m到nci X{,n} 最多n次 X{m} 精确匹配m次 X? 重复零次 ^ 行首 $ 行尾 \< \b单词词首 \> \b单词词 ...
分类:
系统相关 时间:
2020-11-26 15:19:14
阅读次数:
17
一、该漏洞和router advertisement相关,先来学习一下相关协议; IPV4时代,如果想探测其他主机是否存活,要么用ARP(一般是局域内网),要么用ICMP(一般是公网)。但是在IPV6时代改用了Neighbor Discovery Protocol(简称NDP),该协议定义了使用IC ...
#1.临时使用 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package #2.永久使用 1 pip install pip -U 2 pip config set global.index-url https://py ...
分类:
其他好文 时间:
2020-11-16 13:42:27
阅读次数:
6
之前遇到了一个JEECMS大概看了一下, 测试版本JEECMSV9.3 SSRF /src/main/java/com/jeecms/cms/action/member/UeditorAct.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 ...
分类:
其他好文 时间:
2020-11-16 13:32:28
阅读次数:
4
Preparation for MCM/ICM Writing -- by Chance Zhang $1^ed$ key words: MCM/ICM, format, phrases, tools This document is a basic note in preparation of M ...
分类:
其他好文 时间:
2020-11-16 13:25:25
阅读次数:
11
forEach()、map()、filter()、find()、reduce()、some()、every() 它们都自带遍历(只要调用这个方法就会自动循环数组中的每一项) 它们都不会改变原数组,调用方法后产生的结果在返回值中 它们的参数都是一个函数,这个函数都有三个参数(只有第一个“项”是必填的) ...
分类:
编程语言 时间:
2020-11-16 13:15:51
阅读次数:
10