Question : Simple T-SQL question...

Hi,

I am using SQL 2008

What is the T-SQL to change a column from NOT accepting nulls to accepting nulls?

-ws

Answer : Simple T-SQL question...

alter table YourTableName
alter column YourColumnName DataType null


eg:

alter table emps
alter column name varchar(10) null

Random Solutions  
 
programming4us programming4us