|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
appending a temporary table to another temporary tableI need to append one table to another. The fields/columns headings are
identical in both tables. How do I append one to the other using SQL (in Query Analyzer)? Hi Mitch
Try something like this: INSERT INTO #temptable1 SELECT * FROM #temptable2 Show quote "Mitch" <Mi***@discussions.microsoft.com> wrote in message news:A0D31075-F452-4DF5-B78A-AA9482992986@microsoft.com... >I need to append one table to another. The fields/columns headings are > identical in both tables. How do I append one to the other using SQL (in > Query Analyzer)? > |
|||||||||||||||||||||||