当需要描述一个表table1对象结构时,可以使用()。
A、DES table1
B、DESC table1
C、DESCR table1
D、DESCRIB table1
A、DES table1
B、DESC table1
C、DESCR table1
D、DESCRIB table1
A、EXP user/pwd tables=(name,table1)file=export.dmp Rows=y B、EXP user1/pwd table table1 file=extable1.dmp C、EXP user/pwd tables=(name,table1)file=export.dmp Rows=n D、EXP user1/pwd table=table1 file=extable1.dmp Rows=n
A、更新DB1数据库中表Table1的所有统计信息 B、在DB1数据库中,使用CREATE STATISTICS 语句为表Table1的列col3创建缺少的统计信息 C、设置优先值提升选项的值为1 D、执行如下语句:USE DB1 GO CREATE INDEX index1 ON table1(col3) INCLUDE(col1, col2) WITH (ONLINE = ON) GO E、执行如下语句 USE DB1GOCREATE INDEX index1 ON table1(col3, col2,col1)
A、A.当创建一个对象时,该对象的构造函数会被自动调用; B、B.当创建一个对象时,需要指明是否调用该对象的构造函数; C、C.同一个类可以有几个构造函数,各构造函数的参数必须不同; D、D.同一个类可以有几个构造函数,各构造函数的参数必须相同; E、E.构造函数的名称与类的名称相同;
A、DB2 will no longer allow updating the value of IDCOL1 in TABLE1. B、When inserting a row in TABLE2, the only values that DB2 will allow for IDCOL2 are the existing values of IDCOL1. C、When inserting a row in TABLE2, DB2 will only allow foreign values for IDCOL2, that is values which do not exist in IDCOL1. D、When a SELECT statement joins TABLE1 with TABLE2, DB2 will automatically add the condition TABLE1.IDCOL1=TABLE2.IDCOL2 if not specified in the statement.