Filters
Question type

Study Flashcards

The views are created by executing a CREATE VIEW SQL command.

Correct Answer

verifed

verified

Which of the following is a technique for optimizing the internal performance of the relational data model?


A) Avoiding indexes on secondary keys
B) Clustering data
C) Not reporting statistics to save machine resources
D) Using random index organizations

Correct Answer

verifed

verified

In an SQL statement,which of the following parts states the conditions for row selection?


A) Select
B) From
C) Where
D) Group By

Correct Answer

verifed

verified

The ON UPDATE ________ option allows changes to a parent table to pass onto a child table or tables.

Correct Answer

verifed

verified

A ________ is a virtual table that is created dynamically upon request to a user.

Correct Answer

verifed

verified

Indexes generally slow down access speed in most RDMS.

Correct Answer

verifed

verified

A DBMS that manages data as a collection of tables in which all data relationships are represented by common values in related tables is called a(n)________ DBMS.

Correct Answer

verifed

verified

The ________ Boolean operator joins two or more conditions and returns results only when all conditions are true.

Correct Answer

verifed

verified

Which of the following questions is answered by the SQL statement? Select Count (Product_Description) from Product_T;


A) How many products are in the Product Table?
B) How many products have product descriptions in the Product Table?
C) How many characters are in the field name "Product_Description"?
D) How many different columns named "product Description" are there in table Product_T?

Correct Answer

verifed

verified

Which of the following will produce the minimum of all standard prices?


A) Select standard_price from product_v where standard_price = min;
B) Select min(standard_price) from product_v;
C) Select standard_price from min(product_v) ;
D) Select min(standard_price) from product_v where standard_price = min(standard_price) ;

Correct Answer

verifed

verified

To update data in SQL we must inform the DBMS what ________,________,and ________ are involved.

Correct Answer

verifed

verified

relation,c...

View Answer

Commands used to control a database are part of the ________ or ________.

Correct Answer

verifed

verified

data contr...

View Answer

How is the having clause different from the where clause?

Correct Answer

verifed

verified

While the where clause works on each row...

View Answer

Expressions are mathematical manipulations of data in a table that may be included as part of the SELECT statement.

Correct Answer

verifed

verified

A database table is defined using the data definition language (DDL).

Correct Answer

verifed

verified

The ________ command enables one to change table definitions.

Correct Answer

verifed

verified

The CREATE SCHEMA DDL command is used to create a table.

Correct Answer

verifed

verified

In SQL the ________ and ________ clauses are required,while the ________ clause is needed when only certain rows are to be retrieved or multiple tables are to be joined.

Correct Answer

verifed

verified

SQL is both an American and international standard for database access.

Correct Answer

verifed

verified

The asterisk (*)wildcard designator can be used to select all fields from a table,as well as in WHERE clauses when an exact match is not possible.

Correct Answer

verifed

verified

Showing 21 - 40 of 119

Related Exams

Show Answer