多项选择题

成绩表grade中字段score代表分数,以下()语句返回成绩表中的最低分。

A.select max(score)from grade
B.select top1score from grade order by score asc
C.Select min(score)fromgrade
D.select top1score from grade order by score desc

<上一题 目录 下一题>
热门 试题

单项选择题
查找authors表中的所有电话号码的首位为4,第二位为0或1的电话号码()。

A.SELECT phone FROM authors WHERE phone LIKE’4[1,0]%’
B.SELECT phone FROM authors WHERE phonein’4[^10]%’
C.SELECT phone FROM authors WHERE phone LIKE’4_[1,0]%’
D.SELECT phone FROM authors WHERE phone between’41%’and’40%’

单项选择题
查询student表中的所有非空email信息,以下语句正确的是()。

A.Select email from student where email !=null
B.Select email from student where email not is null
C.Select email from student where email<>null
D.Select email from student where email is no tnull

相关试题
  • Mysql引擎中InnoDB和MyISAM最大的区别是哪...
  • 以下选项中的语句错误的是()
  • 显示数据库的版本的命令是哪一个?()
  • 安装Mysql服务的命令是哪一个?()
  • 登录到Mysql服务的命令是哪一个?()