Your query should look like this:
SELECT table1.ID, table1.student, table1.mark, table1.Subject, Table2.Grade
FROM table1, Table2
WHERE table1.mark Between [table2].[min] And [table2].[max];
Note how there is no join in the query. This is called a Cartesian Product and the criteria ensures...