Mysql5.7 是否不能给虚拟列添加注释?如果可以,应该如何添加?

如题


一只甜甜圈
浏览 509回答 1
1回答

郎朗坤

mysql> create table test    -> (id int,    -> col int generated always as (id+1) stored comment "generated column"    -> );Query OK, 0 rows affected (0.04 sec) mysql> show create table test\G*************************** 1. row ***************************       Table: testCreate Table: CREATE TABLE `test` (  `id` int(11) DEFAULT NULL,  `col` int(11) GENERATED ALWAYS AS ((`id` + 1)) STORED COMMENT 'generated column' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 1 row in set (0.00 sec)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

MySQL