有什么办法可以让php MyAdmin上不再手动批量编辑记录吗?

发布于 2024-11-09 23:11:07 字数 61 浏览 0 评论 0原文

有什么办法可以让php MyAdmin上不再手动批量编辑记录吗?

谢谢

雨果

Is there any way no manual bulk edit records on php MyAdmin?

Thanks

Hugo

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

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

发布评论

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

评论(1

濫情▎り 2024-11-16 23:11:07

如果要编辑数据库中的多行,可以单击“浏览”选项卡中的全选复选框,然后单击编辑(铅笔图标)。如果要编辑一次显示的默认 30 行以上,请在要显示的行数文本框中输入更大的数字。

更新:如果您想更新一组选定记录中的给定列,有两种方法可以执行此操作。

  1. 如果它们有共同点(例如 Column_2 具有相同的值),您可以执行 UPDATE 表 SET Column_1 = X WHERE Column_2 = Y
  2. 如果您要更改的行没有任何共同点,那么您可以通过以下方式获取 WHERE 子句选择它们的复选框并单击导出按钮(它是删除按钮右侧的表格图标)。这将为您提供 WHERE 子句。复制该 where 子句并在 UPDATE 查询中使用它。 UPDATE 表集 Column_1 = X WHERE [WHERECLAUSE]

If you want to edit multiple rows in a database, you can click the select all checkbox in the "Browse" tab, and then click the edit (pencil icon). If you want to edit more than the default 30 rows which show at a time, enter a higher number in the # of rows to show textbox.

UPDATE: If you want to UPDATE a given column in a set of selected records, there are two ways to do this.

  1. If they have something in common (e.g. Column_2 has the same value), you can do an UPDATE table SET Column_1 = X WHERE Column_2 = Y
  2. If there's nothing the rows you want to change have in common, then you can get the WHERE clause by selecting their checkboxes and clicking the export button (it's a table icon to the right of the delete button). This will give you the WHERE clause. Copy that where clause and use it in an UPDATE query. UPDATE table set Column_1 = X WHERE [WHERECLAUSE]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文