Preview:
CREATE TABLE group_reviews (
	review_id serial PRIMARY KEY,


	group_id INT REFERENCES groups (group_id) NOT NULL,
	subject_id INT REFERENCES subjects (id) NOT NULL,
        posting_date DATE NOT NULL
);


CREATE TABLE student_subjects (
	id serial PRIMARY KEY,
	student_id INT REFERENCES students (student_id)
	NOT NULL,
	subject_id INT REFERENCES subjects (id)
	NOT NULL
);
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter