SELECT r1 AS retval FROM tab1 INTERSECT SELECT r2 AS retval FROM tab2
SELECT r1 AS retval FROM tab1 EXCEPT SELECT r2 AS retval FROM tab2
SELECT DISTINCT r1 AS retval FROM tab1, tab2 WHERE r1 <> r2
SELECT r1 AS retval FROM tab1 UNION SELECT r2 AS retval FROM tab2
第1题:
Given the following two tables:TAB1 C1 C21 Antarctica 2 Africa 3 Asia 4 Australia TAB2 CX CY5 Europe 6 North America 7 South AmericaWhich of the following SQL statements will insert all rows found in table TAB2 into table TAB1?()
A.INSERT INTO tab1 SELECT cx, cy FROM tab2
B.INSERT INTO tab1 VALUES (tab2.cx, tab2.cy)
C.INSERT INTO tab1 VALUES (SELECT cx, cy FROM tab2)
D.INSERT INTO tab1 (c1, c2) VALUES (SELECT cx, cy FROM tab2)
第2题:
A.R1 can learn EIGRP routes from R2, but R2 cannot learn EIGRP routes from R1
B.R1 can send IP packets to R2, but R2 cannot send IP packets to R1
C.R2 no longer learns EIGRP routes from R1 for routes not connected to R1
D.R1 no longer replies to R2‘s Query messages
E.R2n o longer sends to R1 Query messages
第3题:
In which of the following situations should correlation names be used?()
第4题:
Given that tables T1 and T2 contain the following rows: Table T1: C1 C2 5 4 5 2 5 5 Table T2: C1 C2 5 1 5 2 5 3 Which of the following queries will return only those rows that exist in T1 and not in T2?()
第5题:
Which of the following SQL statements will return the year and average salary for all employees hired within a given year that have a salary greater than $30,000?()
第6题:
Given the following function: CREATE FUNCTION emplist ( ) RETURNS TABLE ( id CHAR(6) , firstname VARCHAR(12) , lastname VARCHAR(15) ) LANGUAGE SQL BEGIN ATOMIC RETURN SELECT EMPNO, FIRSTNME, LASTNAME FROM EMPLOYEE WHERE WORKDEPT IN ('A00', 'B00'); END How can this function be used in an SQL statement?
第7题:
Given the following two tables: TAB1 C1 C2 1 Antarctica 2 Africa 3 Asia 4 Australia TAB2 CX CY 5 Europe 6 North America 7 South America Which of the following SQL statements will insert all rows found in table TAB2 into table TAB1?()
第8题:
SELECT * FROM t1 UNION SELECT * FROM t2
SELECT * FROM t1 UNION DISTINCT SELECT * FROM t2
SELECT * FROM t1 INTERSECT SELECT * FROM t2
SELECT * FROM t1 WHERE (c1,c2)= (SELECT c1,c2 FROM t2)
第9题:
SELECT * FROM t1 UNION SELECT * FROM t2
SELECT * FROM t1 UNION DISTINCT SELECT * FROM t2
SELECT * FROM t1 INTERSECT SELECT * FROM t2
SELECT * FROM t1 WHERE (c1,c2)= (SELECT c1,c2 FROM t2)
第10题:
INSERT INTO tab1 SELECT cx, cy FROM tab2
INSERT INTO tab1 VALUES (tab2.cx, tab2.cy)
INSERT INTO tab1 VALUES (SELECT cx, cy FROM tab2)
INSERT INTO tab1 (c1, c2) VALUES (SELECT cx, cy FROM tab2)
第11题:
SELECT * FROM T1 MINUS SELECT * FROM T2
SELECT * FROM T1 EXCEPT SELECT * FROM T2
SELECT * FROM T2 UNION EXCEPT SELECT * FROM T1
SELECT * FROM T1 NOT EXISTS SELECT * FROM T2
第12题:
SELECT * FROM t1 UNION SELECT * FROM t2
SELECT * FROM t1 UNION DISTINCT SELECT * FROM t2
SELECT * FROM t1 INTERSECT SELECT * FROM t2
SELECT * FROM t1 WHERE (c1,c2)= (SELECT c1,c2 FROM t2)
第13题:
A.SELECT UNIQUE dept FROM staff
B.SELECT DISTINCT dept FROM staff
C.SELECT (dept) UNIQUE FROM staff
D.SELECT (dept) DISTINCT FROM staff
第14题:
Routers R1 and R2 are EIGRP neighbors. R1 has been configured with the eigrp stub connected command. Which of the following is true as a result?()
第15题:
Which of the following statements eliminates all but one of each set of duplicate rows in the DEPT column in the STAFF table?()
第16题:
Given the following two tables: TAB1 R1 A A A B B C C D E TAB2 R2 A A B B C C D Which of the following queries returns the following result set? RETVAL E()
第17题:
Given the following statements: CREATE TABLE tab1 (col1 INT); CREATE TABLE tab2 (col1 INT); CREATE TRIGGER trig1 AFTER UPDATE ON tab1 REFERENCING NEW AS new1 FOR EACH ROW MODE DB2SQL INSERT INTO tab2 VALUES(new1.col1); INSERT INTO tab1 VALUES(2),(3); What is the result of the following query? SELECT count(*) FROM tab2;()
第18题:
Given the following two tables: TAB1 C1 C2 A 11 B 12 C 13 TAB2 CX CY A 21 C 22 D 23 The following results are desired: C1 C2 CX CY A 11 A 21 C 13 C 22 -- --D 23 Which of the following queries will yield the desired results?()
第19题:
INSERT INTO tab1 SELECT cx, cy FROM tab2
INSERT INTO tab1 VALUES (tab2.cx, tab2.cy)
INSERT INTO tab1 VALUES (SELECT cx, cy FROM tab2)
INSERT INTO tab1 (c1, c2) VALUES (SELECT cx, cy FROM tab2)
第20题:
SELECT r1 AS retval FROM tab1 INTERSECT SELECT r2 AS retval FROM tab2
SELECT r1 AS retval FROM tab1 EXCEPT SELECT r2 AS retval FROM tab2
SELECT DISTINCT r1 AS retval FROM tab1, tab2 WHERE r1 <> r2
SELECT r1 AS retval FROM tab1 UNION SELECT r2 AS retval FROM tab2
第21题:
3
2
1
0
第22题:
R1 can learn EIGRP routes from R2, but R2 cannot learn EIGRP routes from R1
R1 can send IP packets to R2, but R2 cannot send IP packets to R1
R2 no longer learns EIGRP routes from R1 for routes not connected to R1
R1 no longer replies to R2's Query messages
R2n o longer sends to R1 Query messages
第23题:
SELECT * FROM tab1 INNER JOIN tab2 ON c1=cx
SELECT * FROM tab1 LEFT OUTER JOIN tab2 ON c1=cx
SELECT * FROM tab1 FULL OUTER JOIN tab2 ON c1=cx
SELECT * FROM tab1 RIGHT OUTER JOIN tab2 ON c1=cx