码迷,mamicode.com
首页 >  
搜索关键字:primary segment    ( 6669个结果
linux系统mysql索引
索引 一、索引的分类 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
sql server create table 给字段添加注释说明
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
MySQL中自增ID修改起始值
在实际工作过程中,有时因为生产环境已有历史数据原因,需要测试环境数据id从某个值开始递增,此时,我们需要修改数据库中自增ID起始值, 下面以MySQL为例,表名:users; 建表时添加 create table users(id int auto_increment primary key,666 ...
分类:数据库   时间:2020-07-16 21:38:29    阅读次数:87
Springboot @Cacheable缓存过期时间
参考: 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
vue学习(二) 生命周期
beforeCreate created beforeMount mounted beforeUpdate updated beforeDestroy destroyed 参考文章 https://segmentfault.com/a/1190000011381906 ...
分类:其他好文   时间:2020-07-14 13:53:51    阅读次数:54
0434. Number of Segments in a String (E)
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
3.1_表单组件_button
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
谈谈mysql的主键和外键
主键:保证数据的唯一性,非空且唯一,一般设置主键的语法为:字段 类型 PRIMARY KEY;或者 字段 类型,PRIMARY KEY(字段名) 外键:保证数据的完整性,一致性。一般设置的外键关联的是另一张表的主键。外键的插入或者更新不能插入或更新主键表中没有的值,切记删除主键表中的数据时, 要先去 ...
分类:数据库   时间:2020-07-12 22:14:35    阅读次数:102
mysql ---范式的学习
--数据库的三大范式 ,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
6669条   上一页 1 ... 21 22 23 24 25 ... 667 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!