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
The content of dynamic views is generated when they are referenced.
(True/False)
4.9/5
(36)
Requiring a CustomerID to exist in a Primary table before it can exist in a foreign table is an example of:
(Multiple Choice)
4.9/5
(34)
Which of the following is true of the order in which SQL statements are evaluated?
(Multiple Choice)
4.9/5
(36)
The comparison operators = and != are used to establish a range of values.
(True/False)
5.0/5
(37)
Multiple values returned from an SQL query that includes an aggregate function are called:
(Multiple Choice)
4.8/5
(48)
What result set will the following query return? Select Item_No
From Order_V
Where quantity > 10;
(Multiple Choice)
4.8/5
(40)
Expressions are mathematical manipulations of data in a table that may be included as part of the SELECT statement.
(True/False)
4.8/5
(36)
What does the following SQL statement do? Alter Table Customer_T
Add (Type Varchar (2));
(Multiple Choice)
4.7/5
(40)
Which of the following is the wildcard operator in SQL statements?
(Multiple Choice)
4.9/5
(32)
Which of the following counts ONLY rows that contain a value?
(Multiple Choice)
4.9/5
(36)
The following insert command would work fine:
insert into budget values 121,222,111;
(True/False)
4.9/5
(30)
The HAVING clause and the WHERE clause perform the same operation.
(True/False)
4.8/5
(33)
Which of the following will produce the minimum of all standard prices?
(Multiple Choice)
4.9/5
(28)
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.9/5
(33)
What does the following SQL command do? insert into Customer_T values (001,'John Smith','231 West St','Boston','MA','02115');
(Multiple Choice)
4.9/5
(38)
When creating tables, it's important to decide which columns will allow null values before the table is created.
(True/False)
4.9/5
(40)
Showing 41 - 60 of 105
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)