Exam 5: Introduction to SQL
Exam 1: The Database Environment and Development Process119 Questions
Exam 2: Modeling Data in the Organization102 Questions
Exam 3: The Enhanced E-R Model102 Questions
Exam 4: Logical Database Design and the Relational Model101 Questions
Exam 5: Introduction to SQL102 Questions
Exam 6: Advanced SQL95 Questions
Exam 7: Databases in Applications93 Questions
Exam 8: Physical Database Design and Database Infrastructure167 Questions
Exam 9: Data Warehousing and Data Integration150 Questions
Exam 10: Big Data Technologies69 Questions
Exam 11: Analytics and Its Implications32 Questions
Exam 12: Data and Database Administration With Focus on Data Quality66 Questions
Exam 13: Distributed Databases100 Questions
Exam 14: Object-Oriented Data Modeling104 Questions
Select questions type
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.7/5
(44)
Implementation of a standard can never stifle creativity and innovation.
(True/False)
4.8/5
(31)
Expressions are mathematical manipulations of data in a table that may be included as part of the SELECT statement.
(True/False)
4.9/5
(31)
What result set will the following query return?
SELECT Item_No
FROM Order_V
WHERE quantity > 10;
(Multiple Choice)
4.8/5
(35)
Which of the following counts ONLY rows that contain a value?
(Multiple Choice)
4.8/5
(31)
What will be returned when the following SQL query is executed?
SELECT driver_no, COUNT(*) as num_deliveries
FROM deliveries
GROUP BY driver_no
HAVING COUNT(*) > 2;
(Multiple Choice)
4.7/5
(32)
A single value returned from an SQL query that includes an aggregate function is called a vector aggregate.
(True/False)
4.9/5
(34)
What does the following SQL statement do? ALTER TABLE Customer_T
ADD (Type Varchar (2));
(Multiple Choice)
4.9/5
(35)
What were the original purposes of SQL, and does SQL as we know it today live up to those standards?
(Essay)
4.9/5
(36)
When the SELECT clause in the create view statement contains the keyword DISTINCT, the view can be used to update data.
(True/False)
4.8/5
(39)
The first part of an SQL query to be read is the ________ statement.
(Multiple Choice)
4.7/5
(36)
What does the following SQL statement do?
SELECT * From Customer WHERE Cust_Type = "Best"
(Multiple Choice)
4.7/5
(27)
The last part of an SQL query to be read is the ________ statement.
(Multiple Choice)
4.7/5
(27)
Showing 41 - 60 of 102
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)