04 2022 档案
摘要:正则表达式用途 测试字符串内的模式 替换文本 基于模式匹配从字符串中提取特定子字符串 regular expression语法 +:前面的字符可能出现一次或多次 :前面的字符可能出现零次或多次 ?:前面的字符可能出现0次或一次 构造正则表达式的方法和创建数学表达式的方法一样。也就是用多种元字符与运算
阅读全文
摘要:Fauce:Fast and Accurate Deep Ensembles with Uncertainty for Cardinality Estimation 论文解读(VLDB 2021) 本篇博客是对Fauce:Fast and Accurate Deep Ensembles with U
阅读全文
摘要:limit用法介绍 limit子句可以返回检索查询行的某一连续的部分 用法介绍: SELECT column_list FROM table1 ORDER BY column_list LIMIT row_count OFFSET offset; 其中,row_count和offset是参数: ro
阅读全文
摘要:public class TrieNums { int n; /*Nums start from 0*/ int[] storage; /*TrieNums index start from 1*/ int[] treeNums; int query(int index){ int ans = 0;
阅读全文
摘要:Tsunami: A Learned Multi-dimensional Index for Correlated Data and Skewed Workloads 论文解读(VLDB 2021) 本篇博客是对发表在2021 VLDB上的# Tsunami: A Learned Multi-dim
阅读全文