Filters
Question type

Study Flashcards

When listing more than one column name in the SELECT clause of a SELECT statement, the column names must be separated by  semicolons ‾\underline {\text { semicolons }} . _________________________

Correct Answer

verifed

verified

The  SELECT ‾\underline {\text { SELECT } } command can be used to display the structure of a database table. _________________________

Correct Answer

verifed

verified

A(n) ____ has a predefined meaning in Oracle11g.


A) keyword
B) statement
C) syntax
D) clause

Correct Answer

verifed

verified

The  SELECT ‾\underline { \text { SELECT } } clause identifies the table containing the data to be queried. _________________________

Correct Answer

verifed

verified

Combining the contents of two or more columns is known as  projection ‾\underline {\text { projection } } . _________________________

Correct Answer

verifed

verified

A column alias must be contained within double quotation marks (" ") if it contains which of the following?


A) blank spaces
B) special symbols
C) characters that should be displayed in lower or mixed case
D) all of the above

Correct Answer

verifed

verified

Choosing specific columns to be displayed by a SELECT statement is known as selection.

Correct Answer

verifed

verified

Choosing specific columns in a SELECT statement is known as ____________________.

Correct Answer

verifed

verified

If you do not want a column alias to appear in all upper case characters, the column alias must be enclosed in ____________________ marks.

Correct Answer

verifed

verified

Concatenation refers to combining the results of several SELECT statements into one result.

Correct Answer

verifed

verified

A query is accomplished by issuing a SELECT statement.

Correct Answer

verifed

verified

Contents of the BOOKS table Contents of the BOOKS table    -Which of the following will display the new retail price of each book as 20 percent more than it originally cost? A)  SELECT title, cost+.20  New Retail Price  FROM books; B)  SELECT title, cost*.20  New Retail Price  FROM books; C)  SELECT title, cost*1.20  New Retail Price  FROM books; D)  none of the above -Which of the following will display the new retail price of each book as 20 percent more than it originally cost?


A) SELECT title, cost+.20 "New Retail Price" FROM books;
B) SELECT title, cost*.20 "New Retail Price" FROM books;
C) SELECT title, cost*1.20 "New Retail Price" FROM books;
D) none of the above

Correct Answer

verifed

verified

Structure of the ORDERS table Structure of the ORDERS table    -Which of the following statements can be used to view the structure of the ORDERS table? A)  SELECT * FROM orders; B)  DESCRIBE ORDERS C)  LIST ORDERS; D)  none of the above -Which of the following statements can be used to view the structure of the ORDERS table?


A) SELECT * FROM orders;
B) DESCRIBE ORDERS
C) LIST ORDERS;
D) none of the above

Correct Answer

verifed

verified

The ____ for a SQL statement gives the basic structure, or rules, required to execute the statement.


A) clauses
B) keywords
C) sequence
D) syntax

Correct Answer

verifed

verified

Which of the following keywords can be included in a SELECT statement to suppress duplicate data?


A) UNIQ
B) DISTINCT
C) SUPPRESS
D) all of the above

Correct Answer

verifed

verified

What is the correct solution for the arithmetic expression (2+8) /2*9/3 using the order of operations employed by Oracle10g when solving equations?


A) 1.336
B) 4.8
C) 15
D) 14

Correct Answer

verifed

verified

Insignificant zeros  are ‾\underline { \text { are } } displayed for numeric columns by default to show two decimal places. _________________________

Correct Answer

verifed

verified

Combining the contents of two or more columns is known as ____.


A) projection
B) concatenation
C) selection
D) suppression

Correct Answer

verifed

verified

Contents of the PUBLISHER table Contents of the PUBLISHER table    -Based upon the contents of the PUBLISHER table, which of the following SQL statements will execute without returning an error message? A)  SELECT pubid PUBLISHERID name FROM publisher; B)  SELECT pubid name FROM publisher; C)  SELECT pubid  PUBLISHER ID  name FROM publisher; D)  all of the above -Based upon the contents of the PUBLISHER table, which of the following SQL statements will execute without returning an error message?


A) SELECT pubid PUBLISHERID name FROM publisher;
B) SELECT pubid name FROM publisher;
C) SELECT pubid "PUBLISHER ID" name FROM publisher;
D) all of the above

Correct Answer

verifed

verified

Choosing specific columns to be displayed by a SELECT statement is known as projection.

Correct Answer

verifed

verified

Showing 61 - 80 of 122

Related Exams

Show Answer