SQL Server 2008 复制表,其中字段的物理顺序发生变化

发布于 2024-09-08 07:58:07 字数 193 浏览 1 评论 0原文

任务是将有效相同的表复制

table1 ( A,C,B )

table2 ( A,B,C ) 

相同的字段/约束,只是字段的物理顺序不同。我可以使用标准工具和最少的编码来完成它吗?对于这种情况下的批量复制,似乎需要每个字段对的映射。

The task is to copy

table1 ( A,C,B )

to

table2 ( A,B,C ) 

Tables effectively identical, the same fields/constraints just physical sequence of fields is different. Can I do it with standard tools and minimal coding. For bulk copy in this case mapping for each field pair seems to be required.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神仙妹妹 2024-09-15 07:58:07

这似乎是一个简单的

insert into table2(A,B,C)
select A,B,C from table1

This seems to be a simple

insert into table2(A,B,C)
select A,B,C from table1
卸妝后依然美 2024-09-15 07:58:07

如果我正确理解了您的问题,您只需复制表格而不进行更改,然后更改顺序即可。通过在 SQL 企业管理器的设计模式下拖动列来更改字段顺序。

If I've understood your question correctly, you can just copy the table without changes and then change the ordering afterwards. Change the field order by dragging the column in Design mode in SQL Enterprise Manager.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文