使用表单将一个 mysql 表中的数据插入到另一个 mysql 表中

发布于 2024-10-31 09:34:41 字数 351 浏览 1 评论 0原文

我对 mysql 脚本编写还很陌生,我需要有关上述问题的帮助。

我有两个表由相同的字段名称组成,除了一个字段,如下所示:

表 1

id_student, studentname, studentnric, studentno, dateofbirth, address, phone, courses, session

表 2

id_graduate, studentname, studentnric, studentno, courses, session

我想要完成的是,将第一个表中的数据获取到第二个表中

I'm still very new in mysql scripting and I need help on the above matter.

I have two table consist of same field names except one field as below:

table 1

id_student, studentname, studentnric, studentno, dateofbirth, address, phone, courses, session

table 2

id_graduate, studentname, studentnric, studentno, courses, session

What I am trying to accomplish is, to get the data in the first table into the second table

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

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

发布评论

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

评论(2

錯遇了你 2024-11-07 09:34:41
INSERT INTO table2
SELECT id_student as id_graduate, studentname, studentnric, studentno, courses, session 
FROM table1
INSERT INTO table2
SELECT id_student as id_graduate, studentname, studentnric, studentno, courses, session 
FROM table1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文