Hello all I'm having 1 Question with following query syntax
ALTER TABLE table_name
ADD column_name column-definition;
Question is can we use parameters to column_name
field like @column_name
? Because I'm creating columns which Column name is supplied by front end as a parameter. for example
ALTER TABLE table_name
ADD @column_name varchar(250);
this is giving error so any alternate for this?