I have an existing query that outputs current data, and I would like to insert it into a Temp table, but am having some issues doing so. Would anybody have some insight on h
You can do that like this:
INSERT INTO myTable (colum1, column2) SELECT column1, column2 FROM OtherTable;
Just make sure the columns are matching, both in number as in datatype.