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
Any create command may be reversed by using a(n) ________ command.
Free
(Multiple Choice)
4.7/5
(38)
Correct Answer:
B
What result set will the following query return?
SELECT Item_No, description
FROM item
WHERE weight > 100 and weight < 200;
Free
(Multiple Choice)
4.9/5
(28)
Correct Answer:
C
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';
Free
(True/False)
4.9/5
(30)
Correct Answer:
False
In order to update data in SQL, one must inform the DBMS which relation, columns, and rows are involved.
(True/False)
4.9/5
(30)
Which of the following questions is answered by the SQL statement?
SELECT COUNT (Product_Description) FROM Product_T;
(Multiple Choice)
4.7/5
(40)
COUNT(*) tallies only those rows that contain a value, while COUNT counts all rows.
(True/False)
4.8/5
(34)
The FROM clause is the first statement processed in an SQL command.
(True/False)
4.9/5
(33)
The comparison operators = and != are used to establish a range of values.
(True/False)
4.8/5
(36)
When creating tables, it's important to decide which columns will allow null values before the table is created.
(True/False)
4.9/5
(37)
Explain the three classes of SQL commands and when they would be used.
(Essay)
4.8/5
(30)
The content of dynamic views is generated when they are referenced.
(True/False)
4.8/5
(36)
In an SQL statement, which of the following parts states the conditions for row selection?
(Multiple Choice)
4.8/5
(31)
What does the following SQL command do?
INSERT INTO Customer_T values (001,'John Smith','231 West St','Boston','MA','02115');
(Multiple Choice)
4.8/5
(28)
SQL has been implemented only in the mainframe and midrange environments.
(True/False)
4.7/5
(34)
Showing 1 - 20 of 102
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)