Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
whitebird
Starting Member
12 Posts |
Posted - 2008-02-28 : 07:50:03
|
| hi, create table mytable( id int, num int, comp as id/num)now i want to change column comp to formula id/100.please help me out.Raghu sunkara. |
|
|
harsh_athalye
Master Smack Fu Yak Hacker
5581 Posts |
Posted - 2008-02-28 : 07:54:24
|
| [code]alter table dbo.mytabledrop column compGOalter table dbo.mytableadd comp as id/100GO[/code]Harsh AthalyeIndia."The IMPOSSIBLE is often UNTRIED" |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
|
|
|
|
|