Table Student has 3 columns,Student_id,Student_Name &
Course_Id. Table Course has 2 columns, Course_Id &
Course_Name.Write a query to listdown all the Courses and
number of student in each course.
Answer Posted / pradip d
select count(student_name),course_name from student,course
where course.course_id=student.course_id group by course_name;
| Is This Answer Correct ? | 18 Yes | 8 No |
Post New Answer View All Answers
What does varchar include?
Is sql the best database?
Can a view be mutating? If yes, then how?
What are % type and % rowtype?
Is mariadb nosql?
What is recursive stored procedure?
What is partition in sql query?
What is percent sign in sql?
Which is better stored procedure or query?
what is sql server agent? : Sql dba
what are the 'mysql' command line arguments? : Sql dba
What is execution plan in sql?
what are properties of a transaction? : Sql dba
What is the difference between sql and isql*plus?
How do I order by ascending in sql?