DELETE * FROM TABLE T03
DELETE ALL FROM T03
DELETE * FROM T03
DELETE FROM T03
第1题:
设有学生表:STUD(学号,姓名,性别,年龄,专业),将学号为“20030019”的学生从该表中删除掉的语句是______。
A.DELETE STUD WHERE学号="20030019"
B.DELETE FROM STUD WHERE学号="20030019"
C.DELETE TABLE STUD WHERE学号="20030019"
D.DELETE FROM WHERE 学号="20030019"
第2题:
A.DELETE * FROM TABLE T03
B.DELETE ALL FROM T03
C.DELETE * FROM T03
D.DELETE FROM T03
第3题:
请问oracle的整表删除操作()是正确的。
第4题:
下列哪一个命令为删除sample数据库的tb_name表()。
第5题:
删除emp表的全部数据,但不提交,以下正确的语句是()
第6题:
若要删除book表中所有数据,以下语句错误的是()
第7题:
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?()
第8题:
Which of the following will DELETE all of the rows from table T03?()
第9题:
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()
第10题:
delete from system.table1与truncate table system.table1区别是什么?
第11题:
It fails to delete the records because the records are locked in SHARE mode.
It deletes the rows successfully because the table is locked in SHARE mode
It fails to delete the records because the table is locked in EXCLUSIVE mode.
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
第12题:
It fails with a Resource Busy error.
It deletes the rows successfully because the table is locked in SHARE mode.
It fails to delete the records because the table is locked in EXCLUSIVE mode.
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
第13题:
A.REVOKE DROP ON t1 FROM PUBLIC
B.REVOKE UPDATE ON t1 FROM PUBLIC
C.REVOKE DELETE ON t1 FROM PUBLIC
D.REVOKE CONTROL ON t1 FROM PUBLIC
第14题:
A.delete all from book
B.delete from book
C.truncate table book
D.drop table book
参考答案:BC
第15题:
ORACLE数据库中如何删除表table中的所有记录,并回收所有空间()
第16题:
在Access中,删除"订单"表中所有记录,应运行的SQL命令是()
第17题:
设有一张教师表js,含有一个字符型字段xb(表示教师的性别)。下列命令中语法正确的是()
第18题:
删除表Teacher中编号为070041的记录,应为()
第19题:
Which of the following statements is used to prevent user TOM from adding and deleting data in table TAB1?()
第20题:
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?()
第21题:
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()
第22题:
REVOKE ADD, DELETE FROM USER tom ON TABLE tab1
REVOKE ADD, DELETE ON TABLE tab1 FROM USER tom
REVOKE INSERT, DELETE FROM USER tom ON TABLE tab1
REVOKE INSERT, DELETE ON TABLE tab1 FROM USER tom
第23题:
DELETE * FROM TABLE T03
DELETE ALL FROM T03
DELETE * FROM T03
DELETE FROM T03
第24题:
REVOKE DROP ON t1 FROM PUBLIC
REVOKE UPDATE ON t1 FROM PUBLIC
REVOKE DELETE ON t1 FROM PUBLIC
REVOKE CONTROL ON t1 FROM PUBLIC