新增至目前資料庫的新建的資料表中:
SELECT [ProductID], [Title], [CreateTime]
INTO New_Products
FROM Products
新增至其他資料庫的新建資料表中:
SELECT [ProductID], [Title], [CreateTime]
INTO New_Products IN BackupDB
FROM Products
單純備份結構:
SELECT [ProductID], [Title], [CreateTime]
INTO New_Products
FROM Products
WHERE 0=1;
沒有留言:
張貼留言