Sumit Kesarwani Total Post:782 Points:3910 Posted by Sumit Kesarwani August-24-2014 23:53 PM MSSQL Server MSSQL Server 1 Answer(s) 1212 View(s) Ratings: Rate this:
Sumit Kesarwani Post:782 Points:3910 Write an SQL SELECT statement to count the number of rows in STUDENT table and display the result with the label NumStudents. Posted on 3 years ago SELECT COUNT(*) AS NumStudents FROM STUDENT;
Post:782
Points:3910Write an SQL SELECT statement to count the number of rows in STUDENT table and display the result with the label NumStudents.
SELECT COUNT(*) AS NumStudents FROM STUDENT;