网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
Which of the following will DELETE all of the rows from table T03?()
A
DELETE * FROM TABLE T03
B
DELETE ALL FROM T03
C
DELETE * FROM T03
D
DELETE FROM T03
参考答案
参考解析
解析:
暂无解析
更多 “单选题Which of the following will DELETE all of the rows from table T03?()A DELETE * FROM TABLE T03B DELETE ALL FROM T03C DELETE * FROM T03D DELETE FROM T03” 相关考题
考题
找出正确的叙述()A DROP TABLE表示删除表的定义B DELETE FROM TABLE表示删除表的定义C DROP TABLE 等于DELETE FROM TABLED DROP TABLE属于数据操纵语言
考题
根据SQL标准,要删除表student中所有数据,但不将表student的定义一起删除,下面哪个语句可以适用?()A delete from studentB delete all from studentC delete * from studentD drop table student
考题
设有学生表:STUD(学号,姓名,性别,年龄,专业),将学号为“20030019”的学生从该表中删除掉的语句是______。A.DELETE STUD WHERE学号="20030019"B.DELETE FROM STUD WHERE学号="20030019"C.DELETE TABLE STUD WHERE学号="20030019"D.DELETE FROM WHERE 学号="20030019"
考题
Assuming PUBLIC has been granted all privileges on table T1, which of the following statements would continue to permit any user to add rows to table T1, but not remove them?()
A.REVOKE DROP ON t1 FROM PUBLICB.REVOKE UPDATE ON t1 FROM PUBLICC.REVOKE DELETE ON t1 FROM PUBLICD.REVOKE CONTROL ON t1 FROM PUBLIC
考题
Which of the following will DELETE all of the rows from table T03?()
A.DELETE * FROM TABLE T03B.DELETE ALL FROM T03C.DELETE * FROM T03D.DELETE FROM T03
考题
若要删除book表中所有数据,以下语句错误的是哪两项?()
A.delete all from bookB.delete from bookC.truncate table bookD.drop table book
考题
请问oracle的整表删除操作()是正确的。A、truncate table tablenameB、delete from tablenameC、delete*from tablenameD、以上都不对
考题
ORACLE数据库中如何删除表table中的所有记录,并回收所有空间()A、delete * from tableB、delete from tableC、truncate tableD、clear table
考题
下列哪一个命令为删除sample数据库的tb_name表()。A、delete from tb_nameB、delete from samplE.tb_nameC、drop table samplE.DBO.tb_nameD、drop table samplE.tb_name
考题
在Access中,删除"订单"表中所有记录,应运行的SQL命令是()A、delete*from"订单"B、delete*from订单C、delete*from"订单ID"D、delete*from订单ID
考题
删除emp表的全部数据,但不提交,以下正确的语句是()A、DELETE * FROM. EMPB、DELETE FROM EMPC、TRUNCATE TABLE EMPD、DELETE TABLE EMP"
考题
设有一张教师表js,含有一个字符型字段xb(表示教师的性别)。下列命令中语法正确的是()A、DELETE FROM js WHERE xb="男"B、DELETE TABLE js WHERE xb="男"C、DELETE FROM js FOR xb="男"D、DELETE TABLE js FOR xb="男"
考题
若要删除book表中所有数据,以下语句错误的是()A、truncate table bookB、delete * from bookC、drop table bookD、delete from book
考题
删除表Teacher中编号为070041的记录,应为()A、DELETE FROM Teacher WHERE编号="070041"B、DELETE FROM Teacher 编号="070041"C、DELETE编号="070041"FROMTeacherD、DELETE FROM Teacher WHERE编号IS"070041"
考题
The opening of cursor CSR01 produces the following result set: STUDENT LASTNM FIRSTNM CLASSNO 123 Brown John T100 213 Bailey James T100 312 Carter Arlene T210 465 Chas Devon T305 546 Davis Steven T405 If this Fetch statement is executed: FETCH csr01 INTO :studnum, :firstname, :lastname, :class Which of the following DELETE statements will cause this row to be deleted?()A、DELETE ALL FROM tab01 FOR CURRENT OF csr01B、DELETE FROM tab01 FOR CURRENT csr01 WITH RSC、DELETE * FROM tab01 WHERE CURRENT csr01 WITH CSD、DELETE FROM tab01 WHERE CURRENT OF csr01 WITH RR
考题
Which of the following statements is used to prevent user TOM from adding and deleting data in table TAB1?()A、REVOKE ADD, DELETE FROM USER tom ON TABLE tab1B、REVOKE ADD, DELETE ON TABLE tab1 FROM USER tomC、REVOKE INSERT, DELETE FROM USER tom ON TABLE tab1D、REVOKE INSERT, DELETE ON TABLE tab1 FROM USER tom
考题
Which of the following will DELETE all of the rows from table T03?()A、DELETE * FROM TABLE T03B、DELETE ALL FROM T03C、DELETE * FROM T03D、DELETE FROM T03
考题
Assuming PUBLIC has been granted all privileges on table T1, which of the following statements would continue to permit any user to add rows to table T1, but not remove them?()A、REVOKE DROP ON t1 FROM PUBLICB、REVOKE UPDATE ON t1 FROM PUBLICC、REVOKE DELETE ON t1 FROM PUBLICD、REVOKE CONTROL ON t1 FROM PUBLIC
考题
User A executes the following command to drop a large table in your database:SQL DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table:SQL DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()A、It fails to delete the records because the records are locked in SHARE mode.B、It deletes the rows successfully because the table is locked in SHARE modeC、It fails to delete the records because the table is locked in EXCLUSIVE mode.D、It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
考题
User A executes the following command to drop a large table in your database: SQL DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table: SQL DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()A、It fails with a "Resource Busy" error.B、It deletes the rows successfully because the table is locked in SHARE mode.C、It fails to delete the records because the table is locked in EXCLUSIVE mode.D、It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
考题
单选题Which of the following statements is used to prevent user TOM from adding and deleting data in table TAB1?()A
REVOKE ADD, DELETE FROM USER tom ON TABLE tab1B
REVOKE ADD, DELETE ON TABLE tab1 FROM USER tomC
REVOKE INSERT, DELETE FROM USER tom ON TABLE tab1D
REVOKE INSERT, DELETE ON TABLE tab1 FROM USER tom
考题
单选题User A executes the following command to drop a large table in your database:SQL DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table:SQL DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()A
It fails to delete the records because the records are locked in SHARE mode.B
It deletes the rows successfully because the table is locked in SHARE modeC
It fails to delete the records because the table is locked in EXCLUSIVE mode.D
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
考题
单选题Which of the following will DELETE all of the rows from table T03?()A
DELETE * FROM TABLE T03B
DELETE ALL FROM T03C
DELETE * FROM T03D
DELETE FROM T03
考题
单选题User A executes the following command to drop a large table in your database: SQL DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table: SQL DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()A
It fails with a Resource Busy error.B
It deletes the rows successfully because the table is locked in SHARE mode.C
It fails to delete the records because the table is locked in EXCLUSIVE mode.D
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
考题
单选题Assuming PUBLIC has been granted all privileges on table T1, which of the following statements would continue to permit any user to add rows to table T1, but not remove them?()A
REVOKE DROP ON t1 FROM PUBLICB
REVOKE UPDATE ON t1 FROM PUBLICC
REVOKE DELETE ON t1 FROM PUBLICD
REVOKE CONTROL ON t1 FROM PUBLIC
热门标签
最新试卷