MySQL SQL介绍(1) 一、MySQL SQL介绍 1.1.1 SQL 应用基础 常用的列属性约束 1、primary key (主键) 2、unique (唯一) 3、not null (不为空) 4、default (默认值) 5、auto_increment (自增长) 6、unsign ...
分类:
数据库 时间:
2020-06-06 14:28:47
阅读次数:
66
关注公号「码哥字节」修炼技术内功心法,完整代码可跳转GitHub:https://github.com/UniqueDong/algorithms.git摘要:排序算法提多了,很多甚至连名字你都没听过,比如猴子排序、睡眠排序等。最常用的:冒泡排序、选择排序、插入排序、归并排序、快速排序、计数排序、基数排序、桶排序。根据时间复杂度,我们分三类来学习,今天要讲的就是冒泡、插入、选择排序算法。排序算法时
分类:
编程语言 时间:
2020-06-05 00:28:49
阅读次数:
72
mysql表的完整性约束 阅读目录 概览 not null unique primary key foreign key 返回顶部 概览 为了防止不符合规范的数据进入数据库,在用户对数据进行插入、修改、删除等操作时,DBMS自动按照一定的约束条件对数据进行监测,使不符合规范的数据不能进入数据库,以确 ...
分类:
数据库 时间:
2020-06-04 23:10:31
阅读次数:
102
An Intro to Stateful Stream Processing At a high level, we can consider state in stream processing as memory in operators that remembers information a ...
分类:
Web程序 时间:
2020-06-04 21:20:14
阅读次数:
74
http://pypi.douban.com/simple/ 豆瓣http://mirrors.aliyun.com/pypi/simple/ 阿里http://pypi.hustunique.com/simple/ 华中理工大学http://pypi.sdutlinux.org/simple/ 山 ...
分类:
编程语言 时间:
2020-06-04 10:45:09
阅读次数:
297
本节将开始介绍cartographer前端点云与地图匹配获取当前位姿的算法。上节末尾我们提到ScanMatch函数,源码如下: std::unique_ptr<transform::Rigid2d> LocalTrajectoryBuilder2D::ScanMatch( const common: ...
分类:
其他好文 时间:
2020-06-02 11:38:15
阅读次数:
88
数据库之数据类型、约束条件 1.数据类型 建表时,字段都有对应的数据类型 整型 浮点型 字符类型(char与varchar) 日期类型 枚举与集合 2.约束条件 primary key 主键 unique key 唯一键 not null 不为空 foreign key 外键 创建表的完整语法 [] ...
分类:
数据库 时间:
2020-06-01 00:49:28
阅读次数:
92
Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the ...
分类:
其他好文 时间:
2020-05-31 12:44:37
阅读次数:
59
Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numb ...
分类:
其他好文 时间:
2020-05-31 12:43:12
阅读次数:
52
1.邮箱 export const isEmail = (s) => { return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s) } 2.手机号码 export const isMobile = ...
分类:
编程语言 时间:
2020-05-30 20:15:20
阅读次数:
72