Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How to write a MS_SQL query to populate a column from another column. I have a table:
name col_1 col_2 name1 null value1 name2 null value2
The result should be as follows:
name col_1 col_2 name1 value1 value1 name2 value2 value2
never mind. update mytable set tbl.col_1 = tbl_col2 where col_1 is null