Exam 6: Introduction to SQL

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

When the select clause in the create view statement contains the keyword DISTINCT,the view can be used to update data.

(True/False)
4.9/5
(39)

What does the following SQL statement do? Delete from Customer_T Where state = 'HI';

(Multiple Choice)
4.8/5
(36)

DDL is typically used during which phases of the development process?

(Multiple Choice)
4.8/5
(36)

In order to update data in SQL,one must inform the DBMS which relation,columns,and rows are involved.

(True/False)
4.8/5
(38)

Multiple values returned from an SQL query that includes an aggregate function are called:

(Multiple Choice)
5.0/5
(36)

Indexes are created in most RDBMS to provide rapid ________ and ________ access to base-table data.

(Short Answer)
4.7/5
(34)

What are some of the advantages and disadvantages to an SQL standard?

(Essay)
4.9/5
(28)

The DELETE TABLE DDL command is used to remove a table from the database.

(True/False)
4.8/5
(40)

Which of the following counts ONLY rows that contain a value?

(Multiple Choice)
4.9/5
(43)

What does the following SQL statement do? Alter Table Customer_T Add (Type Varchar (2));

(Multiple Choice)
5.0/5
(34)

What results will be produced by the following SQL query? Select sum(standard_price)as total_price From product_v Where product_type = 'WOOD';

(Multiple Choice)
4.8/5
(36)

The ________ SQL command lists the columns from base tables or views to be projected into the command result table.

(Short Answer)
4.8/5
(32)

What will be returned when the following SQL query is executed? Select driver_no,count(*)as num_deliveries From deliveries Group by driver_no Having count(*)> 2;

(Multiple Choice)
4.8/5
(29)

Implementation of a standard can never stifle creativity and innovation.

(True/False)
4.8/5
(34)

When creating a table,it is not important to consider foreign key?primary key mates.

(True/False)
4.8/5
(25)

One of the original purposes of the SQL standard was to provide a vehicle for portability of database definition and application modules between conforming DBMSs.

(True/False)
4.8/5
(27)

If multiple Boolean operators are used in an SQL statement,NOT is evaluated first,then AND,then OR.

(True/False)
4.9/5
(34)

The FROM clause is the first statement processed in an SQL command.

(True/False)
4.9/5
(33)

Discuss the pros and cons of using dynamic views

(Essay)
4.7/5
(42)

SQL originated from a project called System-S.

(True/False)
4.9/5
(33)
Showing 41 - 60 of 119
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)