CSS 中文开发手册 文本装饰-颜色 | text-decoration-color (Text Decoration) - CSS 中文开发手册 该text-decoration-color CSS属性设置由text-decoration-line属性所指定的线条的颜色。该颜色会应用于所有指定的线... ...
分类:
Web程序 时间:
2020-06-30 22:11:34
阅读次数:
46
唯一性索引(Unique Index)与普通索引(Normal Index)最大的差异就是在索引列上增加了一层唯一约束。添加唯一性索引 的数据列可以为空,但是只要存在数据值,就必须是唯一的。这样做的好处,一是让索引更有效率;二是避免重复数据的出现。实际上,在许多场合,人们创建唯一索引的目的往往不是为 ...
分类:
数据库 时间:
2020-06-30 20:31:54
阅读次数:
202
unique 去重 返回去重之后的指针,仍然为前闭后开,可计算出去重后的元素个数m。 把一个vector去重: int m=unique(a.begin(),a.end())-a.begin(); 把一个数组去重,元素存放在下标1~n: int m=unique(a+1,a+n+1)-(a+1); ...
分类:
其他好文 时间:
2020-06-30 17:32:24
阅读次数:
64
https://www.cnblogs.com/xhliang/p/11913119.html 记录了一些理论知识,但是在实际开发过程中还存在很多疑惑,下面列举几个常用功能点; 1 倒叙,分页,总条数,模糊查询 router.get('/getList',async (ctx)=>{ const L ...
分类:
其他好文 时间:
2020-06-30 12:49:30
阅读次数:
49
1、对于Hibernate和MyBatis的区别与利弊,谈谈你的看法 Hibernate与MyBatis的对比: 1.MyBatis非常简单易学,与Hibernate相对较复杂,门槛较高; 2.二者都是比较优秀的开源产品; 3.当系统属于二次开发,无法对数据库结构做到控制和修改,那MyBatis的灵 ...
分类:
其他好文 时间:
2020-06-30 11:05:18
阅读次数:
58
****************************************************************************** This perl implementation doesn't produce Unix like paths (with forward ...
分类:
其他好文 时间:
2020-06-30 09:14:47
阅读次数:
205
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:
其他好文 时间:
2020-06-29 20:01:24
阅读次数:
82
Given an array of unique integers salary where salary[i] is the salary of the employee i. Return the average salary of employees excluding the minimum ...
分类:
其他好文 时间:
2020-06-29 09:59:02
阅读次数:
56
Mysql加锁过程详解(1)-基本知识 Mysql加锁过程详解(1)-基本知识 Mysql加锁过程详解(2)-关于mysql 幻读理解 Mysql加锁过程详解(3)-关于mysql 幻读理解 Mysql加锁过程详解(4)-select for update/lock in share mode 对事 ...
分类:
数据库 时间:
2020-06-27 21:39:45
阅读次数:
119
数据库常用约束 1 主键约束:primary key 2 外键约束:foreign key (references) 3 唯一值约束:unique 4 默认值约束:default 5 检查约束:check 6 非空约束:not null 7 标识列:identity ...
分类:
数据库 时间:
2020-06-27 13:17:10
阅读次数:
61