InterviewSolution
Saved Bookmarks
| 1. |
What is the SELECT statement? |
|
Answer» SELECT OPERATOR in SQL is USED to select data from a database. The data RETURNED is STORED in a RESULT table, called the result-set. SELECT * FROM myDB.students; |
|