日期:2014-05-18  浏览次数:20531 次

表加一字段,默认值取表中另一字段的值怎么写
各位大神,如题,在表中加一字段,字段的值同表中另一字段的值。
怎么写呢 这个

------解决方案--------------------
SQL code

--创建一个表
create table tablename (id int)
--插入两条数据
insert into tablename select 1 union all select 7
--添加一个列
alter table tablename add nid as ([id])
--查看表中数据
select * from tablename
/*
id          nid
----------- -----------
1           1
7           7
*/