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

时间:2011-04-08 19:05:00

标签: mysql select insert

我在mysql脚本编写方面仍然很新,我需要帮助解决上述问题。

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

表1

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

表2

id_graduate, studentname, studentnric, studentno, courses, session

我想要完成的是将第一个表中的数据导入第二个表

2 个答案:

答案 0 :(得分:5)

INSERT INTO table2
SELECT id_student as id_graduate, studentname, studentnric, studentno, courses, session 
FROM table1

答案 1 :(得分:2)