CREATE TABLE TR(STUDENT_ID int, SUBJECT_ID int, grade int);
INSERT INTO tr SELECT * FROM results where results.STUDENT_ID=3;
SELECT * FROM subjects LEFT JOIN tr ON subjects.SUBJECT_ID=tr.SUBJECT_ID;
DROP TABLE TR;
Is it possible to rewrite the above as one query? I've searched all over the net and still can't do it. I'm using derby database.
The idea is that I want to join table subjects, which has a certain number of rows, with matching results from table results, if there are any for a specific student. If there are no results, I want the ouput rows to contain only data from table subjects. So, the number of output rows will always equal the number of rows in subjects.
The above code works well, but it gives me trouble in my program, because a table has to be created. I would like to avoid that.
