Saved Bookmarks
| 1. |
Write an SQL SELECT statement to count the number of rows in STUDENT table and display the result with the label Num Students. |
|
Answer» SELECT COUNT(*) AS Num Students FROM STUDENT; |
|