单项选择题在Oracle 数据库中,现有如下sql语句“select *+parallel(t18)* count(*)from t1”,针对字符串“ *+parallel(t18)* ”下面正确的说法是:()。
A.这是一个普通的注释。B.这是一个Oracle Hints,作用为使查询语句并行执行。C.这是一个Oracle Hints,作用为使查询语句分步骤执行。D.这是一个Oracle Hints,作用为使查询语句索引优化。
单项选择题在Oracle数据库中,使用内置函数或变量,获取数据库系统当前时间的写法正确的是:()。
A.select sysdate from dualB.select now()C.select getdate()D.以上都是
单项选择题在MySql数据库中,常用的分页查询关键字为:()。
A.topB.rownumC.splitD.limit
单项选择题下列哪个不是关系型数据库:()。
A.OracleB.DB2C.Microsoft Sql ServerD.Redis
单项选择题假设存在表“Student”,表中age列存在null数据,请问下列sql哪个可以将age为null的数据筛选出来:()。
A.select *from Student where age =null;B.select *from Student where age is null;C.select *from Student where age =’’;D.select *from Student where age is ’’;