如何在mysql的现有表中添加另一个字段

发布于 2024-11-14 04:48:42 字数 227 浏览 1 评论 0原文

好的,我有这些表 table1

我这里还有另一个表格:

在此处输入图像描述

那么,idAlbum 在图库表中,对此的查询是什么? 我想从一个表中的一个字段中选择数据并将其插入到另一表中的字段中。

Okay, I have these table
table1

and I also have another table right here:

enter image description here

So,idAlbum is in the gallery table, what is the query for this?
I want to select the data from one field in one table and insert it into a field in another table.

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

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

发布评论

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

评论(2

命比纸薄 2024-11-21 04:48:42

如果您想在 PhpMyAdmin 中的现有表中添加字段,请在查看其数据时单击“结构”选项卡,在表结构的底部您会看到一个不错的框:“在一个的 [开始/结束] 处添加 [数字] 字段单击右侧按钮并用表格进行处理。

If you want to add a field in existing table in PhpMyAdmin, click "Structure" tab while viewing its data, and at the bottom of table structure you have nice box: "Add [number] fields at the [beginning / ending] of a table. Click the button on the right and processd with forms.

桃气十足 2024-11-21 04:48:42
INSERT INTO tbl_temp2 (fld_id)
 SELECT tbl_temp1.fld_order_id
 FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;
INSERT INTO tbl_temp2 (fld_id)
 SELECT tbl_temp1.fld_order_id
 FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文