Exam (elaborations)
SQL COMMANDS (ALL CORRECT)
- Course
- Institution
The SELECT statement is used to select data from a database. The result is stored in a result table, called the result-set. correct answers SELECT column_name,column_name FROM table_name; SELECT * FROM table_name; The SELECT DISTINCT statement is used to return only distinct (different) v...
[Show more]