Filters
Question type

Study Flashcards

Although SQL commands can be grouped together on a single line, complex command sequences are best shown on separate lines, with space between the SQL command and the command's components.

Correct Answer

verifed

verified

Most SQL implementations yield case-insensitive searches.

Correct Answer

verifed

verified

An alias cannot be used when a table is required to be joined to itself in a recursive query.

Correct Answer

verifed

verified

If a designer wishes to create an inner join, but the two tables do not have a commonly named attribute, he can use a(n) _____ clause.


A) OF
B) USING
C) HAS
D) JOIN ON

Correct Answer

verifed

verified

The _____ command defines a default value for a column when no value is given.


A) CHECK
B) UNIQUE
C) NOT NULL
D) DEFAULT

Correct Answer

verifed

verified

How many rows would be returned from a cross join of tables A and B, if A contains 8 rows and B contains 18?


A) 8
B) 18
C) 26
D) 144

Correct Answer

verifed

verified

In Oracle, the _____ function converts a date to a character string.


A) CONVERT()
B) TO_DATE
C) TO_CHAR()
D) TO_STRING()

Correct Answer

verifed

verified

A(n) _____ query specifies which data should be retrieved and how it should be filtered, aggregated, and displayed.


A) INSERT
B) SELECT
C) COMMIT
D) UPDATE

Correct Answer

verifed

verified

The conditional LIKE must be used in conjunction with wildcard characters.

Correct Answer

verifed

verified

Which query is used to list a unique value for V_CODE, where the list will produce only a list of those values that are different from one another?


A) SELECT ONLY V_CODE
FROM PRODUCT;
B) SELECT UNIQUE V_CODE
FROM PRODUCT;
C) SELECT DIFFERENT V_CODE
FROM PRODUCT;
D) SELECT DISTINCT V_CODE
FROM PRODUCT;

Correct Answer

verifed

verified

Rows can be grouped into smaller collections quickly and easily using the _____ clause within the SELECT statement.

Correct Answer

verifed

verified

A(n) _____ character is a symbol that can be used as a general substitute for other characters or commands.

Correct Answer

verifed

verified

The _____ operator could be used in place of EXCEPT (MINUS) if the DBMS does not support it.

Correct Answer

verifed

verified

Oracle users can use the Access QBE (query by example) query generator.

Correct Answer

verifed

verified

A(n) _____, also known as a nested query or an inner query, is a query that is embedded (or nested) inside another query.

Correct Answer

verifed

verified

Showing 61 - 75 of 75

Related Exams

Show Answer