I have just created a simple query the concatenate 2 columns and create a column with this concatenation.
Now I want to ADD a new column to the table base on the below query
SELECT Convert(NVARCHAR(50), [cell_name]) + '_' + Convert(NVARCHAR(50), [n_cell_name]) AS st_gsm_df_relation_key FROM [myDB].[dbo].[gsm_df_relation] I want ALTER TABLE or something based on this query.