考题
在SQL中,若要删除一个表,应使用的语句是:__________TABLE。
考题
You examine the output of SHOW GLOBAL STATUS and notice that the value of Created_tmp_disk_tables is consistently increasing.Which two variables would likely fix this issue?()
A.Table_open_cacheB.Table_open_cache_instancsC.Table_definition_cacheD.Tmp_table_sizeE.Max_heap_table_sizeF.Max_tmp_tables
考题
TheORDERStablebelongstotheuserOE.OEhasgrantedtheSELECTprivilegeontheORDERStabletotheuserHR.WhichstatementwouldcreateasynonymORDsothatHRcanexecutethefollowingquerysuccessfully?()
A.CREATESYNONYMordFORorders;ThiscommandisissuedbyOEB.CREATEPUBLICSYNONYMordFORorders;ThiscommandisissuedbyOEC.CREATESYNONYMordFORoe.orders;ThiscommandisissuedbythedatabaseadministratorD.CREATEPUBLICSYNONYMordFORoe.orders;Thiscommandisissuedbythedatabaseadministrator
考题
Inwhichsituationwillyourunthescriptcontainingthefollowingstatement?()CREATECONTROLFILEREUSEDATABASESALESNORESETLOGSARCHIVELOGMAXLOGFILES20MAXLOGMEMBERS3MAXDATAFILES30MAXINSTANCES10MAXLOGHISTORY1200LOGFILEGROUP1(’/disk1/prod/orders/db/log1a.dbf’,’/disk2/prod/orders/db/log1b.dbf’)SIZE100KGROUP2(’/disk1/prod/orders/db/log2a.dbf’,’/disk2/prod/orders/db/log2b.dbf’)SIZE100K,DATAFILE’/disk1/prod/orders/db/database1.dbf’,’/disk2/prod/orders/db/file1.dbf’;
考题
在SQL中,若要删除一个表,应使用的语句是 【】 TABLE
考题
有Table1,Table2两表,Table2是Table1的从表,Table1表有字段head_id(主键)和head_name,Table2表有字段Line_id(主键),head_id(外键),line_name,现要求查询统计出有那些hand_name在Table2表中有2条以上的数据。请写出你的SQL语句。
考题
【单选题】对于建立在数据库上的DDL触发器,常用的激活DDL触发器的事件不包括()A.Create_Table,Alter_Table,Drop_TableB.Create_View,Alter_View,Drop_ViewC.Create_Procedure,Alter_Procedure,Drop_ProcedureD.Rollback
考题
查询ORDERS表中的所有付款日期(paid_date)为空的客户的所有数据,它的SQL 代码为:Select * from orders where paid_date______ ____。
考题
如果要让某个用户能够在所有模式下建表应该授予此用户哪个权限?A.create tableB.create any tableC.create all tableD.create * table