Are you a Linux fan? Do you hate to do things the easy way? Are you a pro who loves to put his computer’s life on the line to experiment and customize ...
分类:
其他好文 时间:
2020-11-12 13:37:01
阅读次数:
8
/* 154.YEAR(<date>) 返回年 YEARS_BETWEEN(<date_1>, <date_2>) 返回两个日期之间年份 */ SELECT YEAR (TO_DATE ('2011-05-30', 'YYYY-MM-DD')) FROM DUMMY; --返回2 SELECT YE ...
分类:
数据库 时间:
2020-11-07 17:09:15
阅读次数:
25
Vsocks are a means of providing socket communication (either stream or datagram) directly between VMs and their host operating system. The host and ea ...
分类:
其他好文 时间:
2020-10-24 10:17:20
阅读次数:
37
一索引原理索引的目的在于提高查询效率,与我们查阅图书所用的目录是一个道理:先定位到章,然后定位到该章下的一个小节,然后找到页数。相似的例子还有:查字典,查火车车次,飞机航班等本质都是:通过不断地缩小想要获取数据的范围来筛选出最终想要的结果,同时把随机的事件变成顺序的事件,也就是说,有了这种索引机制,我们可以总是用同一种查找方式来锁定数据。数据库也是一样,但显然要复杂的多,因为不仅面临着等值查询,还
分类:
数据库 时间:
2020-10-18 09:58:20
阅读次数:
77
1.创建表时并创建外键约束 create table score( scoreID int primary key, stuID int , score int constraint ck_score check(score between 0 and 100), courseName varcha ...
分类:
数据库 时间:
2020-09-24 22:03:46
阅读次数:
54
MySQL基础02(正则表达式) 1. 过滤数据 1.1 WHERE子句 使用SELECT语句的WHERE子句指定搜索条件。 WHERE子句的操作符 操作符 说明 = 等于 <> 不等于 != 不等于 < 小于 ? 小于等于 > 大于 >= 大于等于 BETWEEN 在指定的两个值之间 1.2 组合 ...
分类:
数据库 时间:
2020-09-24 21:47:38
阅读次数:
58
Link Cut Centroids Fishing Prince loves trees, and he especially loves trees with only one centroid. The tree is a connected graph without cycles. A v ...
分类:
其他好文 时间:
2020-09-24 21:11:56
阅读次数:
36
题目如下: Given an array nums, you are allowed to choose one element of nums and change it by any value in one move. Return the minimum difference between ...
分类:
其他好文 时间:
2020-09-17 22:48:12
阅读次数:
35
ABC咕咕咕 D. Walking Between Houses 有 \(n\) 个点第 \(i\) 个的坐标是 \(i\),一次操作可以从当前点走到任意另一个点,问能否走恰好 \(k\) 步,从 $1$ 开始走,从 \(n\) 结束,距离和恰好 \(=s\),给出构造。 \(n \leq 10^9 ...
分类:
其他好文 时间:
2020-09-17 22:17:50
阅读次数:
29
添加依赖: <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x ...
分类:
其他好文 时间:
2020-09-17 21:15:05
阅读次数:
30