Task Write a query to do the following Cross join the table 'student' and 'course' and check out al

My issue

SELECT student.Student_Name AS St_Name, course.Course_Name AS Course_Name
FROM student
CROSS JOIN course;

My code

/* Write a query cross join the table 'student' and 'course' and check out all possible courses a student can opt. Output the table after cross join */
SELECT student.Student_Name AS St_Name, course.Course_Name AS Course_Name
FROM student
CROSS JOIN course;


Learning course: Database management systems
Problem Link: Cross join in Database management systems