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
The DELETE TABLE DDL command is used to remove a table from the database.
(True/False)
4.9/5
(35)
A database table is defined using the data definition language (DDL).
(True/False)
4.8/5
(26)
The ________ is the structure that contains descriptions of objects such as tables and views created by users.
(Multiple Choice)
4.8/5
(27)
Multiple values returned from an SQL query that includes an aggregate function are called:
(Multiple Choice)
4.7/5
(36)
When a GROUP BY clause is included in an SQL statement, only those columns with a single value for each group can be included.
(True/False)
4.8/5
(30)
The WHERE clause is always processed before the GROUP BY clause when both occur in a SELECT statement.
(True/False)
4.8/5
(35)
What will be returned when the following SQL statement is executed?
SELECT driver_no, count(*) as num_deliveries
FROM deliveries
WHERE state = 'MA'
GROUP BY driver_no;
(Multiple Choice)
4.8/5
(35)
The following INSERT command would work fine:
INSERT INTO budget values 121,222,111;
(True/False)
4.9/5
(41)
DDL is typically used during which phase of the development process?
(Multiple Choice)
4.8/5
(27)
What are some of the advantages and disadvantages to an SQL standard?
(Essay)
4.8/5
(35)
A database is maintained and queried using the data mapping language (DML).
(True/False)
4.9/5
(39)
Given a table named store with 5 fields: store_id, address, city, state, zipcode, why would the following insert command not work?
INSERT INTO store values ('234 Park Street')
(Multiple Choice)
4.7/5
(36)
To get all the customers from Hawaii sorted together, which of the following would be used?
(Multiple Choice)
4.7/5
(35)
Some DBMS can handle graphic data types as well as text and numbers.
(True/False)
4.7/5
(25)
What does the following SQL statement do?
DELETE FROM Customer_T
WHERE state = 'HI';
(Multiple Choice)
4.7/5
(21)
Applications can be moved from one machine to another when each machine uses SQL.
(True/False)
4.8/5
(38)
Showing 21 - 40 of 102
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)