重新排列 Sqlyog 中的列顺序

发布于 2024-08-15 08:40:03 字数 32 浏览 6 评论 0原文

是否可以在 SQL yog 中重新排列表的列顺序?

Is it possible to rearrange a table's column order in SQL yog?

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

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

发布评论

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

评论(2

月亮坠入山谷 2024-08-22 08:40:03

是的。
表/更多表操作/重新排序列(ctrl shift r)

Yes.
Table / More Table Operations / Reorder Columns (ctrl shift r)

少跟Wǒ拽 2024-08-22 08:40:03

列顺序与数据库无关,因此除了提高可读性之外,重新组织列顺序没有任何好处。

对表列重新排序的唯一方法是:

  1. 将当前表重命名为其他名称,例如 [tablename]_ORIG。数据库不允许具有相同名称的表 使用
  2. 所需的列顺序创建一个新表
  3. 将旧表中的数据复制到新表中
  4. 删除旧表

Column order is irrelevant to a database, so there isn't any benefit beyond readability to reorganizing column order.

The only means of reordering a tables columns is to:

  1. Rename the current table to something else, like [tablename]_ORIG. A database won't allow identically named tables
  2. Create a new table with the column order you desire
  3. Copy the data from the old table into the new one
  4. Delete the old table
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文