sql 语句表的定义

来源:互联网 发布:淘宝客流量高峰 编辑:程序博客网 时间:2024/05/17 07:27

create table test
(
   a1 int not null,
   a2 int ,
   a3 as (a1+a2)

a3的值自动生成。