Computer Science, asked by Nithyagokulapriya, 2 months ago

Write a query to display the number of students in the college. Give an alias as STUD_COUNT.


RDBMS function-scalar&Aggregate

Answers

Answered by pujadas2481
5

Answer:select count(student_id) as STUD_COUNT from student;

Explanation:

Similar questions