My issue
/* Write a query to join the tables ‘student’ and ‘course’ and output the same. Check if you can find the course with id ENG201 in the output */
My code
/* Write a query to join the tables 'student' and 'course' and output the same. Check if you can find the course with id ENG201 in the output */
SELECT
s.St_id,
s.St_Name,
s.Department,
c.Course_id,
c.Course_Name,
c.Credits,
c.Prof_id
FROM
student s
INNER JOIN
course c ON s.St_id = s.St_id;
Learning course: Database management systems
Problem Link: Inner Joins in Database management systems