Search for
in snippet title/description
in snippet text
Browse Code
Add-Ins
Blog
Language Feeds
Service Stats
FAQs
Feedback
About
Manage Your Code
Login
Register
Snippet: make a backup copy of a table (SQL)
Title:
make a backup copy of a table
Language:
SQL
Description:
make a backup copy of a table
Views:
135
Author:
Trey Carroll
Date Added:
3/10/2010
Copy
Code
SELECT * INTO [Customers Backup] FROM Customers;
SELECT * INTO [Customers Backup] FROM Customers;