单选题Consider this syntax:   MERGE INTO t1  USING t2 ON (join predicate)…..   What does the MERGE syntax do?()A It performs a merge join of the row from T2 only if it doesn’t exist in the T1 table. B It creates a natural join of tables T1 and T2 for all col

题目
单选题
Consider this syntax:   MERGE INTO t1  USING t2 ON (join predicate)…..   What does the MERGE syntax do?()
A

It performs a merge join of the row from T2 only if it doesn’t exist in the T1 table. 

B

It creates a natural join of tables T1 and T2 for all columns that have the same name. 

C

It creates a Cartesian product of table T1 and table T2 for all columns that have the same name. 

D

For each row from T2, it updates the row if it exists within table T1, otherwise it inserts the row into T1.


相似考题
更多“单选题Consider this syntax:   MERGE INTO t1  USING t2 ON (join predicate)…..   What does the MERGE syntax do?()A It performs a merge join of the row from T2 only if it doesn’t exist in the T1 table. B It creates a natural join of tables T1 and T2 for all col”相关问题
  • 第1题:

    Which two statements are true regarding the USING clause in table joins?()

    • A、It can be used to join a maximum of three tables 
    • B、It can be used to restrict the number of columns used in a NATURAL join 
    • C、It can be used to access data from tables through equijoins as well as nonequijoins 
    • D、It can be used to join tables that have columns with the same name and compatible data types

    正确答案:B,D

  • 第2题:

    下面哪个调度是串行调度()。

    • A、T1:RA.,T2:RB.,T2:WB.,T1:WA.
    • B、B.T1:RB.,T1:WB.,T2:R,T2:WA.
    • C、C.T1:R,T2:RB.,.T1:WA.,T2:WB.
    • D、D.T2:R,T1:RB.,.T1:WA.,T2:WB.

    正确答案:B

  • 第3题:

    脑脊液MRI检查是()

    • A、短T1、短T2信号
    • B、长T1、长T2信号
    • C、长T1、短T2信号
    • D、短T1、长T2信号
    • E、等T1、等T2信号

    正确答案:B

  • 第4题:

    Graves眼病急性期,增粗的眼外肌MRI信号为()

    • A、短T1长T2信号
    • B、等T1长T2信号
    • C、长T1长T2信号
    • D、等T1等T2信号
    • E、短T1短T2信号

    正确答案:C

  • 第5题:

    低浓度顺磁造影剂对质子弛豫时间的影响为()。

    • A、T1缩短,T2改变不大
    • B、T1缩短,T2延长
    • C、T1延长,T2缩短
    • D、T1缩短,T2缩短
    • E、T1延长,T2延长

    正确答案:A

  • 第6题:

    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?()

    • A、SELECT * FROM T1 MINUS SELECT * FROM T2
    • B、SELECT * FROM T1 EXCEPT SELECT * FROM T2
    • C、SELECT * FROM T2 UNION EXCEPT SELECT * FROM T1
    • D、SELECT * FROM T1 NOT EXISTS SELECT * FROM T2

    正确答案:B

  • 第7题:

    单选题
    下面哪个调度是串行调度()。
    A

    T1:RA.,T2:RB.,T2:WB.,T1:WA.

    B

    B.T1:RB.,T1:WB.,T2:R,T2:WA.

    C

    C.T1:R,T2:RB.,.T1:WA.,T2:WB.

    D

    D.T2:R,T1:RB.,.T1:WA.,T2:WB.


    正确答案: B
    解析: 暂无解析

  • 第8题:

    单选题
    在下列模板说明中,正确的是()
    A

    template〈typename T1,T2〉

    B

    template〈class T1,T2〉

    C

    template〈typename T1,typename T2〉

    D

    template(typedef T1,typedef T2)


    正确答案: B
    解析: 暂无解析

  • 第9题:

    单选题
    存在两个结构相同的数据库表T1(col1,col2,col3)、T2(col1,col2,col3),写出一SQL语句将所有T1数据导入到T2表()
    A

    select col1,col2,col3 from T1 into T2(col1,col2,col3)

    B

    insert T1 (col1,col,col3) into T2(col1,col2,col3)

    C

    insert into T2 (col1,col2,col3) as select col1,col2,col3 from T1

    D

    insert into T2(col1,col2,col3) select col1,col2,col3 from T1;


    正确答案: B
    解析: 暂无解析

  • 第10题:

    单选题
    Consider this syntax:   MERGE INTO t1  USING t2 ON (join predicate)…..   What does the MERGE syntax do?()
    A

    It performs a merge join of the row from T2 only if it doesn’t exist in the T1 table. 

    B

    It creates a natural join of tables T1 and T2 for all columns that have the same name. 

    C

    It creates a Cartesian product of table T1 and table T2 for all columns that have the same name. 

    D

    For each row from T2, it updates the row if it exists within table T1, otherwise it inserts the row into T1.


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    听神经瘤内囊变的MRI表现()
    A

    短T1短T2信号

    B

    长T1长T2信号

    C

    长T1短T2信号

    D

    短T1长T2信号

    E

    等T1等T2信号


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    有如下模板声明:template class A;下列声明中,与上述声明不等价的是(  )。
    A

    template<class T1,class T2> class A;

    B

    template<class T1,typename T2> class A;

    C

    template<typename T1,class T2> class A;

    D

    template<typename T1,T2> class A;


    正确答案: B
    解析:
    在类模板中,数据类型本身是它的参数,因而是一种参数化类型的类,是类的生成器。对于本题来说,模板形参表中包括类型Tl和T2两个类型参数,D项,T1说明其类型,而T2没有说明其类型,与题干中的模板说明不一致。

  • 第13题:

    在下列模板说明中,正确的是()

    • A、template〈typename T1,T2〉
    • B、template〈class T1,T2〉
    • C、template〈typename T1,typename T2〉
    • D、template(typedef T1,typedef T2)

    正确答案:C

  • 第14题:

    高浓度顺磁造影剂对质子弛豫时间的影响为()。

    • A、T1缩短,T2改变不大
    • B、T1缩短,T2延长
    • C、T1延长,T2缩短
    • D、T1缩短,T3缩短
    • E、T1延长,T2延长

    正确答案:D

  • 第15题:

    脊髓呈()

    • A、等T1、等T2信号
    • B、长T1、长T2信号
    • C、短T1、长T2信号
    • D、长T1、短T2信号
    • E、长T1、等T2

    正确答案:A

  • 第16题:

    铁磁性颗粒造影剂对质子弛豫时间的影响为()。

    • A、T1缩短,T2缩短
    • B、T1缩短,T2延长
    • C、T1不变,T2缩短
    • D、T2不变,T2延长
    • E、T1延长,T2缩短

    正确答案:C

  • 第17题:

    存在两个结构相同的数据库表T1(col1,col2,col3)、T2(col1,col2,col3),写出一SQL语句将所有T1数据导入到T2表()

    • A、select col1,col2,col3 from T1 into T2(col1,col2,col3)
    • B、insert T1 (col1,col,col3) into T2(col1,col2,col3)
    • C、insert into T2 (col1,col2,col3) as select col1,col2,col3 from T1
    • D、insert into T2(col1,col2,col3) select col1,col2,col3 from T1;

    正确答案:D

  • 第18题:

    Consider this syntax:   MERGE INTO t1  USING t2 ON (join predicate)…..   What does the MERGE syntax do?()

    • A、It performs a merge join of the row from T2 only if it doesn’t exist in the T1 table. 
    • B、It creates a natural join of tables T1 and T2 for all columns that have the same name. 
    • C、It creates a Cartesian product of table T1 and table T2 for all columns that have the same name. 
    • D、For each row from T2, it updates the row if it exists within table T1, otherwise it inserts the row into T1.

    正确答案:D

  • 第19题:

    单选题
    Given that tables T1 and T2 contain the following rows: Table T1: C1 C2 1 4 1 3 1 2 Table T2: C1 C2 1 1 1 2 1 3 Which of the following queries will return only those rows that exist in both T1 and T2?()
    A

    SELECT * FROM t1 UNION SELECT * FROM t2

    B

    SELECT * FROM t1 UNION DISTINCT SELECT * FROM t2

    C

    SELECT * FROM t1 INTERSECT SELECT * FROM t2

    D

    SELECT * FROM t1 WHERE (c1,c2)= (SELECT c1,c2 FROM t2)


    正确答案: D
    解析: 暂无解析

  • 第20题:

    单选题
    亚急性脑出血信号特点为()
    A

    短T1短T2信号

    B

    长T1长T2信号

    C

    长T1短T2信号

    D

    短T1长T2信号

    E

    等T1等T2信号


    正确答案: E
    解析: 暂无解析

  • 第21题:

    单选题
    Graves眼病急性期,增粗的眼外肌MRI信号为()
    A

    短T1长T2信号

    B

    等T1长T2信号

    C

    长T1长T2信号

    D

    等T1等T2信号

    E

    短T1短T2信号


    正确答案: A
    解析: 暂无解析

  • 第22题:

    单选题
    脊髓呈()
    A

    等T1、等T2信号

    B

    长T1、长T2信号

    C

    短T1、长T2信号

    D

    长T1、短T2信号

    E

    长T1、等T2


    正确答案: B
    解析: 暂无解析

  • 第23题:

    单选题
    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?()
    A

    SELECT * FROM T1 MINUS SELECT * FROM T2

    B

    SELECT * FROM T1 EXCEPT SELECT * FROM T2

    C

    SELECT * FROM T2 UNION EXCEPT SELECT * FROM T1

    D

    SELECT * FROM T1 NOT EXISTS SELECT * FROM T2


    正确答案: A
    解析: 暂无解析

  • 第24题:

    单选题
    Given that tables T1 and T2 contain the following rows: Table T1: C1 C2 1 4 1 3 1 2 Table T2: C1 C2 1 1 1 2 1 3 Which of the following queries will return only those rows that exist in both T1 and T2?()
    A

    SELECT * FROM t1 UNION SELECT * FROM t2

    B

    SELECT * FROM t1 UNION DISTINCT SELECT * FROM t2

    C

    SELECT * FROM t1 INTERSECT SELECT * FROM t2

    D

    SELECT * FROM t1 WHERE (c1,c2)= (SELECT c1,c2 FROM t2)


    正确答案: C
    解析: 暂无解析