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
Some DBMS can handle graphic data types as well as text and numbers.
(True/False)
4.9/5
(34)
The first part of an SQL query to be read is the ________ statement.
(Multiple Choice)
5.0/5
(31)
What are some of the advantages and disadvantages to an SQL standard?
(Essay)
4.9/5
(38)
In an SQL statement, which of the following parts states the conditions for row selection?
(Multiple Choice)
4.9/5
(35)
Referential Integrity Constraints are generally established between:
(Multiple Choice)
4.8/5
(31)
The following query totals sales for each salesperson.
Select salesperson_id, sum(sales)
from salesperson
group by salesperson_id;
(True/False)
4.7/5
(40)
What will be returned when the following SQL statement is executed? Select driver_no,count(*) as num_deliveries
From deliveries
Group by driver_no;
(Multiple Choice)
4.9/5
(30)
The FROM clause is the first statement processed in an SQL command.
(True/False)
4.9/5
(38)
The first in a series of steps to follow when creating a table is to:
(Multiple Choice)
4.8/5
(38)
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.9/5
(35)
When creating a table, it is not important to consider foreign key-primary key mates.
(True/False)
4.9/5
(27)
Applications can be moved from one machine to another when each machine uses SQL.
(True/False)
4.7/5
(37)
Showing 21 - 40 of 105
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)