Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to insert values from multiple tables?

Status
Not open for further replies.

SDCSA

Programmer
May 8, 2003
22
0
0
US
Hello all

I have created two tables with the following format.

Table 1

StudentId InstructorId

1000 2000
1001 2000
1002 2001
1003 2001
.... ....

Table 2

StudentId MathMarks PhysicsMarks

1000 90 80
1001 85 75
.... ... ...

Now I want StudentId InstructorId MathMarks PhysicsMarks
to be inserted as rows into a new table 3.

Any help would be appreciated.

Thanks,
sdcsa.
 
insert into table3(studentid, instructorid, mathmarks, physicsmarks) (select a.studentid, a.instructorid, b.mathmarks, b.physicsmarks from table2 b, table1 a where b.studentid = a.studentid)


Or

create table3 with rows...
eg.
create table table3(studentid, instructorid, mathmarks, physicsmarks) as select a.studentid, a.instructorid, b.mathmarks, b.physicsmarks from table2 b, table1 a where b.studentid = a.studentid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top