在sql中可以创建实现这个功能的表,当插入f1,f2时,f3自动运算;当插入f3时出错的
create table tbl_bullet( 
f1 int not null, 
f2 int not null, 
f3 as f1+f2 
); 我在myslq中这么创建 ,却创建失败,不知道为什么?
有没有知道这个在mysql中怎么写的?
谢谢了!