Saved Bookmarks
| 1. |
Write an SQL SELECT statement to display all the columns of the STUDENT table but only those rows where the Grade column is greater than or equal to 90. |
|
Answer» SELECT * FROM STUDENT WHERE Grade >= 90; |
|