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 / guest
select count(student_id),course_name ,student_name
from student s, course c
where s.course_id = c.course_id
group by course_id
order by student_id desc
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
What is rank function in sql?
What is pl sql code?
What are the most important characteristics of pl/sql?
How can I speed up sql query?
What does pl sql developer do?
what are the join types in tsql? : Transact sql
How do I view stored procedures?
What is latest version of sql?
Does sql full backup truncate logs?
What is the use of desc in sql?
Can we group by two columns in sql?
Define concurrency control. : Transact sql
How delete all data from table in sql?
Define SQL and state the differences between SQL and other conventional programming Languages?
Can you have more than one trigger on a table?