如何复制MySQL字段?
在我网站的管理面板上,我有一个用于将新产品添加到数据库的页面。将产品添加到数据库后,它将具有以下结构:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)