如何复制MySQL字段?

发布于 2024-11-09 01:50:03 字数 659 浏览 2 评论 0原文

在我网站的管理面板上,我有一个用于将新产品添加到数据库的页面。将产品添加到数据库后,它将具有以下结构:

item_id  | item_name | item_price
   1         name1       1.00
   2         name2       2.00
             (...)
   5         name5       5.00

该页面(我用来添加新产品)称为“new.php”。 我创建了一个页面,可以在其中查看已添加的产品(称为“index.php”),以及一个删除按钮,以便我当然可以删除项目。

我现在想创建另一个按钮,这次是为了复制产品。我曾经有过一些想法,但事实证明它们都是错误的。

举个例子,假设我想复制 item_id 2。所以我的表将是这样的:

item_id  | item_name | item_price
   1         name1       1.00
   2         name2       2.00
             (...)
   5         name5       5.00
   6         name2       2.00

注意到 item_id 是 auto_increment 是有效的。

On the admin panel of my website, I have a page to add a new product to the DB. After the product is added to the DB, it will have the following structure:

item_id  | item_name | item_price
   1         name1       1.00
   2         name2       2.00
             (...)
   5         name5       5.00

This page (that I use to add new products) is called "new.php".
I have created a page where I can view the products that I have added (called "index.php"), and a delete button so that I can, of course, delete an item.

I want now create another button, this time to duplicate a product. I have had some ideas, but they all proved to be wrong.

To exemplify, let's say that I want to duplicate the item_id 2. So my table would be like this:

item_id  | item_name | item_price
   1         name1       1.00
   2         name2       2.00
             (...)
   5         name5       5.00
   6         name2       2.00

It's valid to note that the item_id is auto_increment.

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

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

发布评论

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

评论(1

半葬歌 2024-11-16 01:50:03
INSERT INTO tbl (item_name, item_price)
SELECT item_name, item_price FROM tbl WHERE item_id = 2
INSERT INTO tbl (item_name, item_price)
SELECT item_name, item_price FROM tbl WHERE item_id = 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文