sorry forgot the query to join them
select firstname,lastname,coursetitle
from student,course
where tblstudent.studentid = tblcourse.studentid
and that will output
firstname lastname coursetitle
john doe science
jane doe science
john doe maths
jane doe english
another form of queries is the join queries such as INNER JOIN which
is technically the same as what i hane done above just with more
typing
select firstname,lastname,coursetitle
from student INNER JOIN course
ON tblstudent.studentid = tblcourse.studentid
or something like that i dont type out join queries i just do =
as a note dont use spaces in table or field names it just causes
problems and if you do for whatever reason you need to place brackets
around them [student table] as an example
hope this helps as well
Regards
Kelvan