I have two large tables and want to combine all of the column names (not as a view) into a new table.
I do not have permission to right click on each t
If you have create rights you should be able to use an:
INSERT INTO MyTable SELECT statement to do this.
INSERT INTO MyTable SELECT
EDIT:
I had it wrong
SELECT * INTO MYNEWTABLE FROM MYSOURCETABLE