Friday, February 18, 2005

Alter table

// Modify the column datatype
alter table sam
alter column hi int

//Add new column
alter table sam
add age int

Wednesday, February 16, 2005

Modify Column name

Modify the Column name in Sql server

sp_rename 'TableName.[OldColumn]','NewColumn','COLUMN'