1、把主键定义为自动增长标识符类型 MySql 在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如: create table customers(id int auto_increment primary key not null, name var ...
分类:
数据库 时间:
2020-11-26 14:09:06
阅读次数:
11
###1.设置行间距和列间距 grid-row-gap/row-gap : 设置行间距 grid-column-gap/column-gap :设置列间距 grid-gap/gap 简写,同时设置行间距和列间距,如果只写一个,则表示2个值都一样 注意:设置了行间距和列间距,要注意列宽和行宽,不然可能 ...
分类:
其他好文 时间:
2020-11-25 12:52:14
阅读次数:
7
Case 1 : type specifier是一个指针或者引用,但不是universal reference Case 2 : type specifier是一个universal reference Case 3 : type specifier既不是指针也不是引用 数组和函数类型推断 auto ...
分类:
编程语言 时间:
2020-11-25 12:09:31
阅读次数:
7
转:https://www.jianshu.com/p/3c8c4a892f3c ffmpeg主要组成部分 1、libavformat:用于各种音视频封装格式的生成和解析,包括获取解码所需信息以生成解码上下文结构和读取音视频帧等功能,包含demuxers和muxer库; 2、libavcodec:用 ...
分类:
其他好文 时间:
2020-11-24 12:06:37
阅读次数:
7
1.创建两个库,每个库创建两个分表t_order_1,t_order_2 DROP TABLE IF EXISTS `t_order_1`; CREATE TABLE `t_order_1` ( `id` int(10) NOT NULL AUTO_INCREMENT, `amount` int(2 ...
分类:
数据库 时间:
2020-11-21 12:32:56
阅读次数:
12
2.5 处理类型 类型别名(type alias) typedef double wages ; typedef wages base, *p ; 或者是using!!别名声明! using SI = Sales_item; 2.5.2 auto 类型说明符 auto itme = val1 + v ...
分类:
编程语言 时间:
2020-11-21 11:55:38
阅读次数:
5
1、Zookeeper 内部选举机制 半数机制:集群中半数以上机器存活,集群可用。所以Zookeeper适合安装奇数台服务器。 Zookeeper虽然在配置文件中并没有指定Master和Slave。但是,Zookeeper工作时,是有一个节点为Leader,其他则为Follower,Leader是通 ...
分类:
其他好文 时间:
2020-11-20 11:58:26
阅读次数:
6
<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/ESA2GJK1DH1K_B/" frameborder="0" scrolling="auto" width="100%" height="1500"></iframe></ ...
分类:
其他好文 时间:
2020-11-20 11:45:41
阅读次数:
4
<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/ESA2GJK1DH1K_B/" frameborder="0" scrolling="auto" width="100%" height="1500"></iframe></ ...
分类:
其他好文 时间:
2020-11-20 11:31:44
阅读次数:
12
索引单表调优案例 CREATE TABLE IF NOT EXISTS `article`( `id` INT(10) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, `author_id` INT(10) UNSIGNED NOT NULL, `cate ...
分类:
数据库 时间:
2020-11-18 13:16:52
阅读次数:
19