使用表单将一个 mysql 表中的数据插入到另一个 mysql 表中
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 insert into select
http://dev.mysql。 com/doc/refman/5.0/en/insert-select.html
Take a look at insert into select
http://dev.mysql.com/doc/refman/5.0/en/insert-select.html