Exam 3: Structured Query Language

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

Microsoft Access SQL commands are run in ________.

Free
(Multiple Choice)
4.8/5
(39)
Correct Answer:
Verified

E

Conditions after the WHERE keyword require single quotes around the values for columns that have which data type?

Free
(Multiple Choice)
4.8/5
(29)
Correct Answer:
Verified

A

Given the table CUSTOMER(CustID,Name,PhoneNumber,AccountBalance) write the standard SQL query to retrieve the Name and Phone Number of customers whose name begins with 'S'.

Free
(Essay)
4.8/5
(43)
Correct Answer:
Verified

SELECT Name,PhoneNumber
FROM CUSTOMER
WHERE Name LIKE 'S%';

SQL stands for ________.

(Short Answer)
4.9/5
(36)

Given the table CUSTOMER(CustID,Name,PhoneNum,AcctBalance) What is the standard SQL query phrase to retrieve the Name and Phone Number of customers?

(Multiple Choice)
4.8/5
(32)

Standard SQL does not allow built-in functions to be used in a WHERE clause.

(True/False)
4.7/5
(41)

Existing tables in a database can be structurally modified by using the SQL ________ command.

(Short Answer)
4.7/5
(28)

Which of the following is the correct SQL clause to sort the results of a SELECT query in reverse-alphabetic order using the Department field?

(Multiple Choice)
4.9/5
(36)

One way to specify all of the columns of a table is to use the special character * after the SQL keyword ________.

(Short Answer)
5.0/5
(40)

In SQL,to refer to a range of values in a WHERE clause,use the WITHIN keyword.

(True/False)
4.7/5
(29)

The ON DELETE CASCADE referential integrity constraint does not apply when rows are deleted using the SQL DELETE command.

(True/False)
4.8/5
(35)

If you need to create a primary key that is a composite key using SQL,the key may be defined when the table is created using the CREATE TABLE statement.

(True/False)
4.7/5
(38)

A composite primary key can be defined using the CONSTRAINT phrase in which SQL command?

(Multiple Choice)
4.8/5
(35)

SQL is not a complete programming language,but is rather a(n)________.

(Short Answer)
4.9/5
(31)

The values of existing data can be modified using the SQL ________ command,which can be used to change several column values at once.

(Short Answer)
4.7/5
(32)

The SQL GROUP BY keyword can be used to group rows by common values.

(True/False)
4.8/5
(40)

An SQL data type of ________ would indicate a variable-length character string with maximum length 75.

(Short Answer)
4.8/5
(26)

An SQL data type of ________ means that values consist of seven decimal numbers with two numbers assumed to the right of the decimal point.

(Short Answer)
4.8/5
(35)

Which of the following data types used in SQL would define a numeric field of the pattern 99.99?

(Multiple Choice)
4.9/5
(23)

Which of the following SQL commands would be used to remove both the data and the table structure of a table named STUDENT?

(Multiple Choice)
4.9/5
(33)
Showing 1 - 20 of 97
close modal

Filters

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