SQL Server 将一个表中的所有行复制到另一个表中,即重复表
我想保留一张桌子作为历史并用空桌子替换它。我如何通过 Management Studio 执行此操作?
I want to keep a table as history and replace it with an empty one. How can I do this through Management Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
将表复制到要存档的表中:
删除表中的所有条目:
Duplicate your table into a table to be archived:
Delete all entries in your table:
没有 sql server 可供测试,但我认为这只是:
Don't have sql server around to test but I think it's just:
您可以使用 RAW SQL:
或者使用向导:
->导出数据
fields
然后执行:
Either you can use RAW SQL:
Or use the wizard:
-> Export Data
fields
Then execute:
尝试这个单个命令来删除和插入数据:
工作示例:
输出:
try this single command to both delete and insert the data:
working sample:
OUTPUT:
这将起作用:
This will work: