1、sql规范 库名、表名、字段名,必须使用小写字母,不得超过30个字符 库名、表名、字段名,必须尽量见名知意,使用下划线分割,禁止使用mysql保留字 建表时表必须有主键,使用bigint unsigned类型,并使用auto_increment自增标记 所有字段及表都必须有注释,存储引擎必须使用 ...
分类:
数据库 时间:
2021-01-30 12:04:05
阅读次数:
0
可以设置mysql的id字段自动递增,方法如下:在 MySQL 8.0 Command Line Client 中操作 use 数据库名称 ALTER TABLE 数据库中的表名称 MODIFY id int NOT NULL AUTO_INCREMENT; 问题得以解决 ...
分类:
数据库 时间:
2021-01-27 13:57:27
阅读次数:
0
大纲 1. 多表查询 2. 事务 3. DCL 多表查询: * 查询语法: select 列名列表 from 表名列表 where.... * 准备sql # 创建部门表 CREATE TABLE dept( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCH ...
分类:
数据库 时间:
2021-01-12 10:49:54
阅读次数:
0
1.构造数据 为了操作方便, 先构造以下数据 1.1 学生表 create table `student` ( `id` int unsigned primary key auto_increment, `name` char(32) not null unique, `sex` enum('男', ...
分类:
数据库 时间:
2021-01-06 12:13:37
阅读次数:
0
建表建分区 CREATE TABLE `db`.`table_new` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id', `time` datetime NOT NULL COMMENT '时间', `clusterid` varchar( ...
分类:
其他好文 时间:
2020-12-08 12:15:11
阅读次数:
3
一、Table Demo CREATE TABLE `employees` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓名', `age` int(11) NOT N ...
分类:
数据库 时间:
2020-11-30 15:26:05
阅读次数:
7
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.创建两个库,每个库创建两个分表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
索引单表调优案例 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
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-0.htmlMySQL8.0.0The current maximum auto-increment counter value is now written to the redo l ...
分类:
数据库 时间:
2020-11-08 16:51:42
阅读次数:
24