创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:
数据库 时间:
2021-06-04 18:53:42
阅读次数:
0
1. 创建索引 1.1 使用Alter创建索引 1 添加主键索引 特点:数据列不允许重复,不能为null,一张表只能有一个主键;Mysql主动将该字段进行排序 ALTER TABLE 表名 ADD Primary key (col); 添加唯一索引 特点:索引列是唯一的,可以null;Mysql主动 ...
分类:
数据库 时间:
2021-06-02 20:33:22
阅读次数:
0
数据查询语言DQL基本结构是由SELECT子句,FROM子句,WHERE子句组成的查询块: SELECT <字段> FROM <表名> WHERE <查询条件> -- 创建数据库 create database if not exists stu; -- 使用数据库 use stu; -- 创建一个 ...
分类:
数据库 时间:
2021-06-02 19:57:06
阅读次数:
0
1.mysql索引优化和查询优化 执行计划各个字段含义: id: 表示查询中select子句或者操作表的顺序,id的值越大,代表优先级越高,越先执行 select_type 😒elect的查询类型:SIMPLE,PRIMARY,SUBQUERY,DERIVED,UNION,UNION REUSLT ...
分类:
数据库 时间:
2021-06-02 13:41:35
阅读次数:
0
4 .表的约束 为了防止数据表中插入错误的数据 ,在MySQL中,定义了一些维护数据库完整性的规则,即表的约束。 我在这里列举一下约束条件和说明啊: 约束条件 说 明 PRIMARY KEY 主键约束,用于唯一标识对应的记录 FPREIGN KEY 外键约束 NOT NULL 非空约束 UNIQUE ...
分类:
其他好文 时间:
2021-05-24 17:06:38
阅读次数:
0
MSDN中有一句话:One of the primary architectural philosophies used in building WPF was a preference for properties over methods or Depenevents. 这句话的意思就是WPF的 ...
分类:
其他好文 时间:
2021-05-24 12:44:16
阅读次数:
0
约束的分类: not null:非空,用于保证该字段的值不 能为空,比如姓名,学号 default:默认,用于保证该字段的默 认值 ,如性别 primary key:主键,用于保证该字段具 有唯一性,非空,如学号 unique:唯一,用于该字段具有唯一性, 可以为空 check:检查约束(mysql ...
分类:
数据库 时间:
2021-05-24 10:29:52
阅读次数:
0
01.表操作 1.1 创建表 create table students( id int unsigned primary key auto_increment, name varchar(20), # 姓名长度为 20 age int unsigned, # 年龄为正整数 height decim ...
分类:
数据库 时间:
2021-05-24 04:45:13
阅读次数:
0
1. 全部导出 <div class="toexcel"> <el-button @click="exportExcel" type="primary" class="button" style="width:70px;position:absolute;top:0;right:30px" >导出< ...
分类:
其他好文 时间:
2021-05-24 01:58:02
阅读次数:
0
[MySQL数据库之表的约束条件:primary key、auto_increment、not null与default、unique、foreign key:表与表之间建立关联] 表的约束条件 约束条件与数据类型的宽度一样,都是可选参数 作用:用于保证数据的完整性和一致性 主要分为: PRIMAR ...
分类:
数据库 时间:
2021-05-03 12:38:34
阅读次数:
0