索引 一、索引的分类 1.根据算法分类 1)主键索引 #1.建表时创建 create table test(id int primary key); create table test(id int,primary key(id)); #2.添加主键索引 alter table test add p ...
分类:
数据库 时间:
2020-07-17 16:16:44
阅读次数:
52
EXEC sys.sp_addextendedproperty @name=N'MS_Description',@level1name=N'a_jcgl_data',@level2name=N'id', @value=N'自增id' , @level0type=N'SCHEMA',@level0na ...
分类:
数据库 时间:
2020-07-17 16:00:48
阅读次数:
159
在实际工作过程中,有时因为生产环境已有历史数据原因,需要测试环境数据id从某个值开始递增,此时,我们需要修改数据库中自增ID起始值, 下面以MySQL为例,表名:users; 建表时添加 create table users(id int auto_increment primary key,666 ...
分类:
数据库 时间:
2020-07-16 21:38:29
阅读次数:
87
参考: SpringBoot 2.X @Cacheable,redis-cache 如何根据key设置缓存时间? @Cacheable(value = "Menus", unless = "#result == null or #result.size() == 0") public List<Sy ...
分类:
编程语言 时间:
2020-07-15 15:49:38
阅读次数:
327
beforeCreate created beforeMount mounted beforeUpdate updated beforeDestroy destroyed 参考文章 https://segmentfault.com/a/1190000011381906 ...
分类:
其他好文 时间:
2020-07-14 13:53:51
阅读次数:
54
Number of Segments in a String (E) 题目 Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space ch ...
分类:
其他好文 时间:
2020-07-14 09:24:30
阅读次数:
84
img: code: <template> <view> <page-head :title="title"></page-head> <view class="uni-padding-wrap uni-common-mt"> <button type="primary">页面主操作 Normal< ...
分类:
其他好文 时间:
2020-07-14 00:24:39
阅读次数:
56
CMP指令 无符号数比较转移指令(A:大 B:小 E:等于) note:1)cmp指令后用以上跳转比较大小 2)记忆指令和意义 带符号数比较转移指令(G:大 L:小 E:等于) note:1)cmp指令后用以上跳转比较大小 2)记忆指令和意义 data segment X DB 78H,87H y ...
分类:
其他好文 时间:
2020-07-13 11:51:19
阅读次数:
66
主键:保证数据的唯一性,非空且唯一,一般设置主键的语法为:字段 类型 PRIMARY KEY;或者 字段 类型,PRIMARY KEY(字段名) 外键:保证数据的完整性,一致性。一般设置的外键关联的是另一张表的主键。外键的插入或者更新不能插入或更新主键表中没有的值,切记删除主键表中的数据时, 要先去 ...
分类:
数据库 时间:
2020-07-12 22:14:35
阅读次数:
102
--数据库的三大范式 ,sql --1.第一范式 --1NF --数据表中的所有字段都是不可分割的原子值 create table student2( id int primary key, name varchar(20), address varchar(30) ); mysql> insert ...
分类:
数据库 时间:
2020-07-12 16:37:59
阅读次数:
63