-
-
-
-
-
-
-
-
-
-
-
-
-
What is a Cartesian product?
A Cartesian product results from a faulty query. It is a row in the results for every combination in the join tables.
-
-
-
What keyword does an SQL SELECT statement use for a string search?
The LIKE keyword allows for string searches. The % sign is used as a wildcard.
-
How is the SUBSTR keyword used in sql?
SUBSTR is used for string manipulation with column name, first position and string length used as arguments. Eg. SUBSTR (NAME, 1 3) refers to the first three characters in the column NAME.
-
-
In terms of DB2 indexing, what is the root page?
The simplest DB2 index is the B-tree and the B-tree's top page is called the root page. The root page entries represent the upper range limits of the index and are referenced first in a search.
-
What are some characteristics of columns that benefit from indexes?
Primary key and foreign key columns; columns that have unique values; columns that have aggregates computed frequently and columns used to test the existence of a value.
DB2 Interview Questions
Ans