多项选择题
数据库中有一张表名为Emp,包含有如下列:EmpNO(雇员编号,Varchar(20),Pk),Job(职位Varchar(10)),HirDate(雇佣日期,Date),Sal(月薪,Float)。要求查询全部雇员信息应该是哪些数据?()
A.Select * From Emp
B.Select * From Emp Where EmpNO Like '%%'
C.Select * From Emp Where Name = '%%'
D.Select * From Emp Where Name Like '%%'
相关考题
-
多项选择题
若要删除book表中所有数据,以下语句错误的是()
A.truncate table book
B.delete * from book
C.drop table book
D.delete from book -
多项选择题
学生成绩表grade中有字段score(float),现在要把所有在55分至60之间的分数提高5分,以下sql语句正确的是()
A.Update grade set score=score+5
B.Update grade set score=score+5 where score>=55 or score <=60
C.Update grade set score=score+5 where score between 55 and 60
D.Update grade set score=score+5 where score >=55 and score <=60 -
多项选择题
现有书目表book,包含字段:price(float);现在查询一条书价最高的书目的详细信息,以下语句正确的是()
A.select top 1 * from book order by price asc
B.select top 1 * from book order by price desc
C.select top 1 * from book where price= (select max (price)from book)
D.select top 1 * from book where price= max(price)
