This post is part of the series on SQL Snippets.
I occasionally need to make a backup of a SQL table and all rows within; while you can create a table and insert the content, this is the long way of doing. Instead you can use SELECT INTO
to both create a table with the correct columns and also to copy the data.
In the below example I am creating a new table suffixed with the date; the first
Continue Reading azurecurve’s Article on their blog
SQL Snippets: SELECT INTO
This post is part of the series on SQL Snippets. I occasionally need to make a backup of a SQL table and all rows within; while you can create a table and insert the content, this is the long way …
Blog Syndicated with azurecurve’s Permission