A: Select * From tbAddress Where strName="赵" And intAge=22
B: Select * From tbAddress Where strName like "赵%" And intAge="22"
C: Select * From tbAddress Where strName like "赵%" And intAge=22
D: Select * From tbAddress Where strName like "%赵%" And intAge=22
举一反三
- 要在tbAddress表中更新记录,下面哪条语句是正确的?( ) A: Update tbAddress Set strName="萌萌",intAge=22 Where ID=2 B: Update tbAddress Set strName=萌萌,intAge=22 Where strName=萌萌 C: Update tbAddress Set dtmSubmit=2008-10-1 Where strName="萌萌" D: Update tbAddress Set intAge=18
- 下面哪条语句可以查询姓“张”并且年龄等于20岁的用户,请问用哪条语句? A: Select * From table Where name like "%张%" And intAge=20 B: Select * From table Where name like "张%" And intAge=20 C: Select * From table Where name like "张%" And intAge="20" D: Select * From table Where name="张" And intAge=20
- 从“学生资料”表中查询所有年龄大于22 岁的学生并显示其姓名,应输入_______命令。 A: SELECT 年龄 FROM 学生资料 WHERE 姓名>22 B: SELECT 年龄 FROM 学生资料 C: SELECT 姓名 FROM 学生资料 WHERE 年龄>22 D: SELECT 姓名 FROM 学生资料
- “员工” 表的“姓名”字段中找出名字包含“玛丽”的人,下面哪条select语句正确:() A: Select * from员工 where 姓名 =’_玛丽_’ B: Select * from员工 where 姓名 =’%玛丽_’ C: Select * from员工 where 姓名 like‘_玛丽%’ D: Select * from员工 where 姓名 like‘%玛丽%’
- 下列语句()能够查询所有英语类课程的信息。 A: SELECT * FROM Course WHERE cname LIKE ‘%英语’ B: SELECT * FROM Course WHERE cname LIKE ‘%英语%’ C: SELECT * FROM Course WHERE cname LIKE ‘_英语_’ D: SELECT * FROM Course WHERE cname LIKE ‘*英语*’
内容
- 0
若“学生”表中有“学号”.“姓名”.“出生日期”等字段,要查询年龄在22岁以上的学生的记录的SQL语句是( )。 A: SELECT * FROM 学生 WHERE ((DATE()-[出生日期])/365>;22) B: SELECT * FROM 学生 WHERE((DATA()-[出生日期])/365>;22) C: SELECT * FROM 学生 WHERE((YEAR()-[出生日期])>;=22) D: SELECT * FROM 学生 WHERE [出生日期]>; E: 1992-01-01
- 1
查询姓“李”的学生的所有信息 A: select * from student where sname like ‘#李%’ B: select * from student where sname like ‘%李#’ C: select * from student where sname like “%李%” D: select * from student where sname like ‘%李%
- 2
从“员工”表的“姓名”字段中找出名字包含“玛丽”的人,下面哪条select语句正确()。 A: Select * from 员工 where 姓名 =’_玛丽_’ B: Select * from 员工 where 姓名 =’%玛丽_’ C: Select * from 员工 where 姓名 like ‘_玛丽%’ D: Select * from 员工 where 姓名 like ‘%玛丽%&rsquo
- 3
下面查询语句中哪条查询语句会查询出所有包含"李"的数据? A: select * from student where name limit‘%李%’ B: select * from student where name =‘%李%’ C: select * from student where name like‘%李%’ D: select * from student where name in‘%李%’
- 4
若“学生”表中有“学号”、“姓名”、“出生日期”等字段,要查询年龄在22岁以上的学生的记录,正确的SQL语句是( )。 A: Select * From 学生 Where [出生日期]> B: 1992-01-01 C: D: Select * From 学生 Where ((Date()-[出生日期])/365>22) E: Select * From 学生 Where ((Year()-[出生日期])>22) F: Select * From 学生 Where ((Data()-[出生日期])/365>22)