本文實(shí)例講述了mysql5.7 生成列 generated column用法。分享給大家供大家參考,具體如下:
生成列的值是根據(jù)列定義中的表達(dá)式計(jì)算得出的。
mysql5.7支持兩種類(lèi)型的生成列:
1、virtual 生成列:當(dāng)從表中讀取記錄時(shí),才計(jì)算該列值。不會(huì)把數(shù)據(jù)持久化在硬盤(pán)上。
2、stored 生成列:向表中寫(xiě)入記錄時(shí),計(jì)算該列值,并作為常規(guī)列持久化存儲(chǔ)在硬盤(pán)上。
所以 virtual 相較于 stored 需要的的存儲(chǔ)空間更少,如果未指定生成列類(lèi)型,mysql5.7 默認(rèn)生成列類(lèi)型為 virtual。
定義生成列的語(yǔ)法:
col_name data_type [GENERATED ALWAYS] AS (expression)
[VIRTUAL | STORED] [NOT NULL | NULL]
[UNIQUE [KEY]] [[PRIMARY] KEY]
[COMMENT 'string']
我們創(chuàng)建一個(gè)表,指定其中一個(gè)字段為生成列。
CREATE TABLE test (
id INT (11) UNSIGNED NOT NULL AUTO_INCREMENT,
chinese DOUBLE NOT NULL DEFAULT '0',
math DOUBLE NOT NULL DEFAULT '0',
english DOUBLE NOT NULL DEFAULT '0',
total_score DOUBLE AS (chinese + math + english),
PRIMARY KEY (id)
) ENGINE=INNODB DEFAULT CHARSET=utf8mb4;
我們向表中插入一條數(shù)據(jù)
insert into test(chinese, math, english) values(66, 72, 54);
注意,生成的列不允許我們?nèi)藶榈闹付ㄖ?,這會(huì)引發(fā)ERROR 3105的錯(cuò)誤。
如果要在 insert 語(yǔ)句中包含 total_score 字段名,則只能將其值設(shè)為 DEFAULT
insert into test(chinese, math, english, total_score) values(33, 44, 55, DEFAULT);
如果表已經(jīng)存在了,我們可以通過(guò)alter table語(yǔ)句來(lái)創(chuàng)建,修改,刪除生成列。
alter table test add column times_score double generated always
as (chinese * math * english) stored;
修改生成列的數(shù)據(jù)類(lèi)型和表達(dá)式
alter table test modify column times_score float generated always
as (chinese * math * english * 10) stored;
重命名生成的列
alter table test change times_score times_score_new float generated always
as (chinese * math * english * 10) stored;
刪除生成的列
alter table test drop column times_score_new;
virtual 列不能更改為 stored 的生成列,反之亦然。只能先刪除,然后再重新添加
alter table test drop column total_score;
alter table test add column total_score double generated always
as (chinese + math + english) stored;
表中的常規(guī)字段,可以修改為 stored 生成列,但不能是 virtual 生成列
alter table test modify column chinese double generated always
as (math + 1) stored;
stored 生成列可以修改為常規(guī)字段,值為生成值
alter table test modify column total_score double;
更多關(guān)于MySQL相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《MySQL查詢(xún)技巧大全》、《MySQL常用函數(shù)大匯總》、《MySQL日志操作技巧大全》、《MySQL事務(wù)操作技巧匯總》、《MySQL存儲(chǔ)過(guò)程技巧大全》及《MySQL數(shù)據(jù)庫(kù)鎖相關(guān)技巧匯總》
希望本文所述對(duì)大家MySQL數(shù)據(jù)庫(kù)計(jì)有所幫助。
您可能感興趣的文章:- mysql 行轉(zhuǎn)列和列轉(zhuǎn)行實(shí)例詳解
- MYSQL數(shù)據(jù)庫(kù)中的現(xiàn)有表增加新字段(列)
- mysql簡(jiǎn)單實(shí)現(xiàn)查詢(xún)結(jié)果添加序列號(hào)的方法
- 如何使用MySQL查詢(xún)某個(gè)列中相同值的數(shù)量統(tǒng)計(jì)
- 利用MySQL統(tǒng)計(jì)一列中不同值的數(shù)量方法示例
- Mysql中返回一個(gè)數(shù)據(jù)庫(kù)的所有表名,列名數(shù)據(jù)類(lèi)型備注
- MySQL 添加、修改、刪除表的列及約束等表的定義
- 數(shù)據(jù)庫(kù)實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)
- MySQL存儲(chǔ)過(guò)程中使用動(dòng)態(tài)行轉(zhuǎn)列
- mysql 列轉(zhuǎn)行,合并字段的方法(必看)
- mysql 將列值轉(zhuǎn)變?yōu)榱械姆椒?/li>