网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
问答题
delete from system.table1与truncate table system.table1区别是什么?

参考答案

参考解析
解析: 暂无解析
更多 “问答题delete from system.table1与truncate table system.table1区别是什么?” 相关考题
考题 Delete form. tablename与TRUNCATE table tablename的区别

考题 delete from tablea truncate table tablea的区别

考题 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中有十万条记录,要删除表中的所有数据,但仍要保留表的结构,请问用以下哪个命令效率最高() A.delete from a;B.drop table a;C.trunc table a;D.truncate table a;E.以上所述都不正确

考题 若要删除book表中所有数据,以下语句错误的是哪两项?() A.delete all from bookB.delete from bookC.truncate table bookD.drop table book

考题 如果要删除A数据库中的B表,可以使用下列哪个命令?______A.ALTER TABLE BB.TRUNCATE TABLE BC.DROP TABLE BD.DELETE TABLE B

考题 请问oracle的整表删除操作()是正确的。A、truncate table tablenameB、delete from tablenameC、delete*from tablenameD、以上都不对

考题 ORACLE数据库中如何删除表table中的所有记录,并回收所有空间()A、delete * from tableB、delete from tableC、truncate tableD、clear table

考题 关于Truncate table, 以下()描述是错误的。A、Truncate table 可跟Where从句,根据条件进行删除B、Truncate table 用来删除表中所有数据C、触发器对Truncate table无效D、delete 比Truncate table速度快

考题 要求删除表test中的所有数据,但是不删除表,而且该删除操作不允许ROLLBACK,应该使用的语句为()。A、UPDATA testB、DROP TABLE testC、DELETE FROM testD、TRUNCATE TABLE test

考题 数据库命令delete和truncate区别是什么?

考题 用truncate和delete语句删除表中数据的区别()A、truncate 命令不记录日志B、truncate 命令记录日志C、delete命令不记录日志

考题 删除emp表的全部数据,但不提交,以下正确的语句是()A、DELETE * FROM. EMPB、DELETE FROM EMPC、TRUNCATE TABLE EMPD、DELETE TABLE EMP"

考题 如下能正确执行的语句是()A、select * from table_name where 1=2B、truncate table table_nameC、delete from table_name where null=nullD、alter table table_name add column idd int

考题 关于Truncatetable,以下()描述是正确的。A、Truncate table 可跟Where从句,根据条件进行删除B、Truncate table 用来删除表中所有数据C、触发器对Truncate table无效D、delete 比Truncate table速度快

考题 若要删除book表中所有数据,以下语句错误的是()A、truncate table bookB、delete * from bookC、drop table bookD、delete from book

考题 下面哪一个SQL语句将删除DEPT表中的所有数据,并永久删除DEPT表的整个结构()A、DROP TABLE dept;B、DELETE TABLE dept;C、TRUNCATE TABLE dept;D、DELETE * . * FROM dept; [END CODE]"

考题 数据表从数据库中删除(连表名也删除)的命令语句如下:()A、drop table 表名;B、insert into 表名(字段名列表) values(值列表);C、delete from 表名 where 条件;D、truncate table 表名。

考题 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

考题 Evaluate the SQL statement:TRUNCATE TABLE DEPT;Which three are true about the SQL statement? ()A、It releases the storage space used by the table.B、It does not release the storage space used by the table.C、You can roll back the deletion of rows after the statement executes.D、You can NOT roll back the deletion of rows after the statement executes.E、An attempt to use DESCRIBE on the DEPT table after the TRUNCATE statement executes will display an error.F、You must be the owner of the table or have DELETE ANY TABLE system privileges to truncate the DEPT table

考题 What does the TRUNCATE statement do?()A、Removes the tableB、Removes all rows from a tableC、Shortens the table to 10 rowsD、Removes all columns from a tableE、Removes foreign keys from a table

考题 Which three descriptions are correct about the effects of the TRUNCATE command on a table()A、The corresponding indexes for the table are also truncated.B、Delete triggers on the table are fired during the execution of the TRUNCATE command.C、The child table is truncated when the TRUNCATE command is applied on the parent table.D、The high-water mark (HWM) is set to point to the first usable data block in the table segment.E、No undo or very little undo data is generated during the execution of the TRUNCATE command

考题 假定表A中有十万条记录,要删除表中的所有数据,但仍要保留表的结构,请问用以下哪个命令效率最高()A、delete from a;B、drop table a;C、trunc table a;D、truncate table a;E、以上所述都不正确

考题 delete from system.table1与truncate table system.table1区别是什么?

考题 问答题delete from system.table1与truncate table system.table1区别是什么?

考题 问答题数据库命令delete和truncate区别是什么?

考题 单选题What does the TRUNCATE statement do?()A Removes the tableB Removes all rows from a tableC Shortens the table to 10 rowsD Removes all columns from a tableE Removes foreign keys from a table