数据库
首页 > 数据库> > mysql新特性计算列

mysql新特性计算列

作者:互联网

计算列

有a列与b列,c列是由a、b两个列相加得出,c列就是计算列,是在创建表或者修改表的时候创建或指明的。

	create table test01(
		a int,
		b int,
		c GENERATED ALWAYS as (a+b) VIRTUAL -- c即为计算列
	); 

标签:int,创建,特性,列是,计算,mysql,table
来源: https://blog.csdn.net/weixin_46245201/article/details/122778456