数据库系统管理员按照事务的方式执行下面的语句:
Create table tab1 (a int,b int)
insert into tabl values(1,2)
insert into tab1 values(2,3)
commit
Insert into tab1 values(2,3)
Insert into tab1 values(1,6)
Commit
Delete from tab1 where a=1
Insert into tab1 values(1,7)
Delete from tab1 where a=1
Insert into tab1 values(1,8)
数据库系统突然崩溃,系统重新启动后,该管理员执行
Select count(*) from tab1
数据库系统的输出是多少?
A6
B3
C4
D5
相关试题
-
数据库系统管理员按照事务的方式执行下面的语句: Create table tab1 (a int,b int) insert into tabl values(1,2) insert into tab
-
SELECT c1 FROM tab1 WHERE c1 =‘a‘ INSERT INTO view1 VALUES (‘a‘) INSERT INTO tab1 VALUES (‘b‘) 执行S
-
sql中,通过insert..into..values()语句插入数据,哪些类型的数据是需要加单引号的()?
-
INSERT INTO TEAM (id, city,name) VALUES (v_id,v_city,v_name); COMMIT; END; 以下( )PL/SQL语句能够正确调用该过
-
可以使用INSERT INTO SELECT语句实现在insert语句中使用子查询。