mysql主键generated_MySQL之虚拟列(generated-columns)

MySQL虚拟列(generated-columns)是MySQL 5.7引入的新特性,分为virtual和stored两种类型。virtual类型在读取记录时实时计算,stored类型在写入时计算并存储。虚拟列可用于自动计算公式,减少人为错误,提高数据一致性。但存在一些限制,如不能对virtual列创建主键或全文索引,也不能删除其依赖的源数据列。
摘要由CSDN通过智能技术生成

定义

MySQL虚拟列(generated-columns)是MySQL 5.7加入的新特性。怎么理解虚拟列?从名字来讲,“生成的字段”,并不是主动插入的值。

MySQL的文档,是这么解释虚拟列的:

There are two kinds of Generated Columns: virtual (default) and stored. Virtual means that the column will be calculated on the fly when a record is read from a table. Stored means that the column will be calculated when a new record is written in the table, and after that it will be treated as a regular field. Both types can have NOT NULL restrictions, but only a stored Generated Column can be be a part of an index.

解释起来,就是虚拟列支持两种方式,virtual和stored。当在表里读取记录的时候,virtual类型的会进行实时的计算。当写入一条记录的时候,stored类型会通过计算,写入表中,和常规的字段的一样的占用磁盘的空间。这两种类型都可以有NOT NULL限制,但是能使用索引的一部分的功能。

MySQL的官方,提供了一个例子,用来简单的说明虚拟列的作用。

> CREATE TABLE sales(

name VARCHAR(20),

price_eur DOUBLE,

amount INT,

tota

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值