欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL常用工具和常用关键字讲解

程序员文章站 2023-09-09 23:20:53
mysql常识 1)常用工具: 1. 【mysql workbench】 管理工具/数据建模 2. 【navicat】 数据库管理工具 3. 【powerdesigner】 数据库建模工具 2)常用...

mysql常识

1)常用工具:

1. 【mysql workbench】 管理工具/数据建模

2. 【navicat】 数据库管理工具

3. 【powerdesigner】 数据库建模工具

2)常用关键字:

1. pk【primary key】-- 主键

2. fk【foreign key】-- 外键

3. uq【unique key】-- 唯一约束

4. nn【not null】-- 非空

5. ai【auto increment】-- 自增

6. zf【zero fill】-- 填充0,例如字段内容是1 int(4), 则内容显示为0001

7. un【unsigned】-- 无符号 整数(非负数)

8. ck【check key】-- 检查

9. g【generated column】-- 生成列

10. bin【binary】-- 二进制数据(比text更大的二进制数据)