例如:
create table ttbl (c1 int ,c2  int ,c3 int)
在执行语句
insert into  ttbl (c1  ,c2)values(4,5).
c3 自动设置为 c1+c2 的值 9问:如何实现?