2

您好我想合并两个表中的选定列并将这些值存储到另一个表中。

例如我有一个表名

class - classname location

和另一张桌子

student - studentid, name, classname

出勤 - 结合两个表只选择列。

i.e studentid , classname, location

告诉如何将值插入我的表出勤率。

提前致谢...

4

1 回答 1

3

你应该使用INSERT...SELECT

INSERT INTO Attendance (studentid , classname, location)
SELECT s.studentid, c.classname, c.location
FROM class c 
INNER JOIN student s ON c.classname = s.classname 
于 2014-01-02T06:41:49.207 回答