单项选择题以下哪个数据库可以使用row number()over(partitionby)函数。()

A.MySql
B.SQLServer
C.Oracle
D.SAS


您可能感兴趣的试卷

你可能感兴趣的试题

2.单项选择题对student1和student2两张表进行innerjoin连接后,形成的新表中()

A.一定包含student1中的所有行,不一定包含student2中的所有行
B.不一定包含student1中的所有行,一定包含student2中的所有行
C.一定包含student1中的所有行,一定包含student2中的所有行
D.不一定包含student1中的所有行,不一定包含student2中的所有行

4.单项选择题

已知表student,字段如下:

取出course1,course2,course3三门成绩均超过60分的记录,可以使用如下查询语句()

A.select*from student where course1+course2+course3>60
B.select*from student where course1 and course2 and course3>60
C.select*from student where max(course1,courser2,course3)>60
D.select*from student where course1>60 and course2>60 and course3>60

5.单项选择题查询student表中记录数可以使用如下语句()

A.select count()from student
B.select count(*)from student
C.select columns()from student
D.select columns(*)from student

6.单项选择题以下哪个SQL函数可以完成对数字的四舍五入()。

A.floor
B.ceiling
C.round
D.truncate

7.单项选择题关系型数据库的完整性约束条件有()。

A.主键约束
B.非空约束
C.唯一约束
D.以上都是