Hello, i wonder if can i add new columns in run time usign T-SQL, the name of the column is a variable, i've tried this:
declare @v-2 char(1)
set @v-2='s'
alter table table1
add @v-2 int
but it's not work, is this no possible in sqlserver? or how i do it? thanks