日期:2014-05-18 浏览次数:20631 次
-->用计算列 create table #(col1 int identity, col2 as col1+1) insert # default values insert # default values insert # default values select * from # /* col1 col2 ----------- ----------- 1 2 2 3 3 4 */ drop table #
------解决方案--------------------
支持计算列
------解决方案--------------------
--用公式 create table tab(col1 int identity, col2 as col1+1)