
Help Help Need to copy a field from one table into another table
Your code wouldn't work. The "insert into" is intend to add new records to
a table, not a column. Try the "ALTER TABLE" command":
CREATE TABLE doc_exa ( column_a INT)
ALTER TABLE doc_exa ADD column_b VARCHAR(20) NULL
Luke
(This posting is provided "AS IS", with no warranties, and confers no
rights.)