摘要: 第1节-MySQL创建表、数据库、查看MySQL引擎 https://www.cnblogs.com/ygbh/p/16851962.html 第2节-MySQL数据库表类型的介绍 https://www.cnblogs.com/ygbh/p/17016708.html 第3节-MySQL表的创建与 阅读全文
posted @ 2022-12-31 15:18 小粉优化大师 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1、查看MySQL支持的存储引擎 show engines; 2、查看默认引擎 show variables like '%storage_engine%'; 3、创建数据库 create database temp_db; 4、创建数据库,创建前判断数据库是否存在 create database 阅读全文
posted @ 2022-12-31 15:16 小粉优化大师 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 1、数字类型 2、时间类型 3、字符串类型 4、参考来源 【来源:https://dev.mysql.com/doc/refman/5.7/en/storage-requirements.html】 阅读全文
posted @ 2022-12-31 15:14 小粉优化大师 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、修改表名 alter table student rename student_new; 2、修改字段名字 alter table student change sname new_name char(8); 3、修改字段的数据类型 alter table student modify snam 阅读全文
posted @ 2022-12-31 15:11 小粉优化大师 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1、查看表 show tables; 2、看表结构 DESC 表名; DESCRIBE 表名; 3、以创建学生表为例 create table student( sno char(5) primary key not null, sname char(8) not null, ssex enum(' 阅读全文
posted @ 2022-12-31 15:08 小粉优化大师 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1、约束关键字介绍 约束条件 说明 PRIMARY KEY 主键约束,用于唯一标识对应的记录 FOREIGN KEY 外键约束 NOT NULL 非空约束 UNIQUE 唯一性约束 DEFAULT 默认值约束,用于设置字段的默认值 AUTO_INCREMENT 自增约束,用于设置表的字段值自动增加 阅读全文
posted @ 2022-12-31 15:03 小粉优化大师 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1、测试表结果 create table student( sno varchar(20) primary key, sname varchar(20), sex enum('男','女'), age int, sdept varchar(20) ); 2、增 2.1、单条插入 insert int 阅读全文
posted @ 2022-12-31 14:50 小粉优化大师 阅读(34) 评论(0) 推荐(0) 编辑