Exam 6: Introduction to SQL
Exam 1: The Database Environment and Development Process116 Questions
Exam 2: Modeling Data in the Organization103 Questions
Exam 3: The Enhanced E-R Model103 Questions
Exam 4: Logical Database Design and the Relational Model102 Questions
Exam 5: Physical Database Design and Performance103 Questions
Exam 6: Introduction to SQL105 Questions
Exam 7: Advanced SQL107 Questions
Exam 8: Database Application Development105 Questions
Exam 9: Data Warehousing103 Questions
Exam 10: Data Quality and Integration105 Questions
Exam 11: Big Data and Analytics102 Questions
Exam 12: Data and Database Administration110 Questions
Exam 13: Distributed Databases100 Questions
Exam 14: Object-Oriented Data Modeling105 Questions
Select questions type
Explain the three classes of SQL commands and when they would be used.
(Essay)
4.8/5
(44)
The last part of an SQL query to be read is the ________ statement.
(Multiple Choice)
4.8/5
(28)
Relational databases are heavily based on the mathematical concept of:
(Multiple Choice)
4.7/5
(34)
The ORDER BY clause sorts the final results rows in ascending or descending order.
(True/False)
4.7/5
(25)
The SQL command ________ adds one or more new columns to a table.
(Multiple Choice)
4.8/5
(33)
________ is a set of commands used to control a database, including security.
(Multiple Choice)
4.7/5
(29)
What were the original purposes of SQL, and does SQL as we know it today live up to those standards?
(Essay)
4.8/5
(29)
The following query totals sales in state= 'MA' for each salesperson.
Select salesperson_id, sum(sales)
from salesperson
group by salesperson_id
having state = 'MA';
(True/False)
4.8/5
(39)
To eliminate duplicate rows in a query, the ________ qualifier is used in the SQL Select command.
(Multiple Choice)
4.8/5
(37)
What result set is returned from the following query? Select Customer_Name, telephone
From customers
Where city in ('Boston','New York','Denver');
(Multiple Choice)
4.9/5
(35)
What does the following SQL statement do? Select * From Customer Where Cust_Type = "Best"
(Multiple Choice)
4.7/5
(31)
SQL is both an American and international standard for database access.
(True/False)
4.7/5
(39)
What does the following SQL statement do? Delete from Customer_T
Where state = 'HI';
(Multiple Choice)
4.8/5
(38)
________ is a set of commands used to update and query a database.
(Multiple Choice)
4.8/5
(40)
What results will be produced by the following SQL query? Select sum(standard_price) as Total_Price
From Product_V
Where Product_Type = 'WOOD';
(Multiple Choice)
4.8/5
(40)
Which of the following questions is answered by the SQL statement? Select Count (Product_Description) from Product_T;
(Multiple Choice)
4.9/5
(37)
The DELETE TABLE DDL command is used to remove a table from the database.
(True/False)
5.0/5
(33)
Showing 81 - 100 of 105
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)