C2090-543 DB2 9.7 Application Development

Loading demo links...

Showing 10–10 of 10 questions

Question 10 (Volume A)

Click the Exhibit button.

CONNECT TO test;

CREATE TABLE tab_a (col1 INT);

CREATE TABLE tab_b (col1 INT);

INSERT INTO tab_a VALUES (1), (2), (3), (4);

INSERT INTO tab_b VALUES (1), (1), (2), (2);

CONNECT RESET;

A DB2 Command Line Processor script file containing the commands and statements shown in the exhibit was executed successfully.

If the statement shown below is executed:

UPDATE tab_a SET col1 = 10 WHERE col1 IN (SELECT * FROM tab_b);

How many rows in table TAB_A will be modified?

Select an option, then click Submit answer.

  • 0

  • 1

  • 2

  • 3