The following statements: CREATE TABLE t1 (col1 INT NOT NULL, PRIMARY KEY(col1)); CREATE TABLE t2 (col1 INT NOT NULL, col2 CHAR(1) NOT NULL, PRIMARY KEY (col1, col2), FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE CASCADE ON UPDATE RESTRICT); CREATE TABLE t3 (col1 INT NOT NULL, col2 INT NOT NULL, PRIMARY KEY (col1, col2),FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE NO ACTION ON UPDATE RESTRICT);INSERT INTO t1 VALUES (1), (2); INSERT INTO t2 VALUES (1, 'a'), (1, 'b'), (2,'c'); INSERT INTO t3 VALUES (1, 100), (2, 200), (2,300); How many rows will be deleted by the following DELETE statement? DELETE FROM t1 WHERE col1= 1;()
第1题:
SQL命令中建立表的命令是______。
A.CREAT VIEW
B.CREAT LABEL
C.CREAT DABATE
D.CREAT TABLE
第2题:
第3题:
Which of the following statements is true regarding the VERSIONS BETWEEN clause?()
第4题:
Several @functions can execute multiple statements. Which one of the following initializes a variable and can increment in during the operation?()
第5题:
建立表结构的SQL命令是()
第6题:
打开表单设计器窗口的命令是()。
第7题:
c=d
l and k are parallel
m and l are perpendicular
第8题:
@do
@for
@while
@dowhile
第9题:
Defining.
Matching.
Gap-filling.
Labeling.
第10题:
aeration tanks
settling tanks
disinfection agent
anaerobic bacteria
第11题:
12; only top-level statements and stored procedure events are logged
111; top-level statements and all lower-level statements are logged
3; only the top-level statements are logged
102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event
第12题:
Dissipate heat
Trap foreign matter
Separate air from the oil
All of the above
第13题:
A.UDT
B.Trigger
C.Package
D.Access plan
第14题:
在Cisco路由器中增加用户的命令,错误的是()。
第15题:
Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements. You run the following statements in the mydb database: Mysql> CALL prepare_db ( ); Mysql> LOAD DATA INFILE '/tmp/data.cav' INTO TABLE mytable; Mysql> SHOW TABLES; How many events are added to the audit log as a result of the preceding statements?()
第16题:
在SQL中,创建基本表用()
第17题:
在SQL Server中,建表使用的命令是()。
第18题:
p + q is even
pq is odd
p2-q2 is even
第19题:
τ(5) =τ(7)
τ(5) τ(7) =τ(35)
τ(5) + τ(7) =τ(12)
第20题:
defining
using real objects
writing a passage by using new words
giving explanations
第21题:
AES
3DES
DES
Diffie-Hellman
第22题:
The statements remain suspended for at least 60 seconds.
The statements are suspended for 60 seconds and then they are executed.
The suspended statements error out if the problem is not rectified within 60 seconds.
The statements are automatically suspended 60 seconds after an error is received, and then attempt to execute normally again.
第23题:
Static electricity
An open running electric motor
Loose wiring
Explosion proof lights
第24题:
The VERSIONS BETWEEN clause may be used in DML statements.
The VERSIONS BETWEEN clause may be used in DDL statements.
The VERSIONS BETWEEN clause may not be used to query past DDL changes to tables.
The VERSIONS BETWEEN clause may not be used to query past DML statements to tables.