hi i am very new to sql and have i problem i would like to solve with your help i have 2 tables, module (modid, courseid, name, tutorid, assessments) and modresults (modid, studentid, assessmentno, url, grade, tutorcomment). what i want to do is write a query so that all the module results are displayed for a particular tutorid.
what i have so far is.
select *
from e modresults, d module
where e.modid = d.modid and staffid ="1" //for the case that we want to see staffid 1's results
where am i going wrong.
please help