My issue
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 name,courses from student cross join course;
Learning course: SQL Intermediate
Problem Link: CodeChef: Practical coding for everyone