博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql workbench建表时PK,NN,UQ,BIN,UN,ZF,AI
阅读量:5342 次
发布时间:2019-06-15

本文共 654 字,大约阅读时间需要 2 分钟。

[intrinsic column flags] (基本字段类型标识)

- PK: primary key (column is part of a pk) 主键

- NN: not null (column is nullable) 非空

- UQ: unique (column is part of a unique key) 唯一

- AI: auto increment (the column is auto incremented when rows are inserted) 自增

 

[additional data type flags, depend on used data type] 扩展数据类型标记

- BIN: binary (if dt is a blob or similar, this indicates that is binary data, rather than text) 二进制(比text更大的二进制数据)

- UN: unsigned (for integer types, see docs: “10.2. Numeric Types”) 整数

- ZF: zero fill (rather a display related flag, see docs: “10.2. Numeric Types”)值中最有意义的字节总为0,并且不保存。 

转载于:https://www.cnblogs.com/WangBoBlog/p/7845041.html

你可能感兴趣的文章
varnish简单应用
查看>>
Linux用户深度管理
查看>>
[leetcode]Permutation Sequence
查看>>
[Android] Android studio gradle 插件的版本号和 gradle 的版本号 的对应关系
查看>>
web.xml的配置中<context-param>配置作用
查看>>
Sizeof and Strlen
查看>>
iOS基础--通讯录
查看>>
vue自定义组件的递归
查看>>
vue动态加载不同的组件(分内部和外部组件)
查看>>
vue 异步渲染
查看>>
Vue v-bind与v-model的区别
查看>>
vue插件(还真是第一次接触)
查看>>
加冒号的,说明=后面的是一个变量或者表达式,没加冒号的=后面就是对应的字符串字面量...
查看>>
ASPxComboBox默认情况下不显示代码和名称,特别头疼,直到发现了关键
查看>>
npm全局模块卸载及默认安装目录修改方法
查看>>
Maven私服搭建
查看>>
基于Docker的GitLab搭建
查看>>
MySql索引
查看>>
一、线程与进程基础知识
查看>>
java之Arrays.asList
查看>>