Exam 7: Advanced SQL
Exam 1: The Database Environment and Development Process173 Questions
Exam 2: Modeling Data in the Organization121 Questions
Exam 3: The Enhanced E-R Model and Business Rules74 Questions
Exam 4: Logical Database Design and the Relational Model120 Questions
Exam 5: Physical Database Design and Performance105 Questions
Exam 6: Introduction to SQL119 Questions
Exam 7: Advanced SQL111 Questions
Exam 8: Database Application Development100 Questions
Exam 9: Data Warehousing117 Questions
Exam 10: Data Quality and Integration102 Questions
Exam 11: Data and Database Administration116 Questions
Exam 12: Distributed Databases109 Questions
Exam 13: Object-Oriented Data Modeling91 Questions
Exam 14: Using Relational Databases to Provide Object Persistence113 Questions
Select questions type
User-defined ________ can improve system performance because they will be processed as sets rather than individually,thus reducing system overhead.
Free
(Short Answer)
4.8/5
(37)
Correct Answer:
transactions
RDBMSs store database definition information in system-created tables which can be considered a data dictionary.
Free
(True/False)
4.8/5
(29)
Correct Answer:
True
The outer join syntax does not apply easily to a join condition of more than ________ tables.
Free
(Short Answer)
4.8/5
(31)
Correct Answer:
two
A type of query that is placed within a WHERE or HAVING clause of another query is called a:
(Multiple Choice)
4.7/5
(40)
A correlated subquery is executed once for each iteration through the outer loop.
(True/False)
4.8/5
(35)
What strategies can be used to write queries that run more efficiently?
(Essay)
4.9/5
(33)
Using an ________ produces this information: rows that do not have matching values in common columns are also included in the result table.
(Short Answer)
4.7/5
(39)
A ________ is the same as an equi-join,except that it is performed over matching columns that have been defined with the same name and one of the duplicate columns is eliminated.
(Short Answer)
4.8/5
(29)
SQL statements can be included in another language,such as C or Java.
(True/False)
4.8/5
(35)
In order to find out what customers have not placed an order for a particular item,one might use the NOT qualifier along with the IN qualifier.
(True/False)
4.9/5
(37)
Specifying the attribute names in the select statement will make it easier to find errors in queries and also correct for problems that may occur in the base system.
(True/False)
4.8/5
(30)
The following queries produce the same results.
select customer_name,customer_city
from customer,salesman
where customer.salesman_id = salesman.salesman_id
and salesman.lname = 'SMITH';
select customer_name,customer_city
from customer
where customer.salesman_id =
(select salesman_id
from salesman
where lname = 'SMITH');
(True/False)
4.9/5
(27)
It is better not to have a result set identified before writing group by and having clauses for a query.
(True/False)
4.7/5
(39)
All of the following are part of the coding structure for triggers EXCEPT:
(Multiple Choice)
4.9/5
(30)
A subquery in which processing the inner query depends on data from the outer query is called a codependent query.
(True/False)
4.8/5
(31)
The results of a ________ join will be a table that includes all of the data from each table that is joined.
(Short Answer)
5.0/5
(32)
Showing 1 - 20 of 111
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)