单项选择题
A.update B.insert C.alter D.del
select from student where id between 8 and 10的作用是()。A.查...
单项选择题select from student where id between 8 and 10的作用是()。
A.查询id为8-10的学生的信息 B.查询id为8、10的学生的信息 C.查询id不是8-10的学生的信息 D.删除8-10的记录
select from student where id in(1,5,6,10)的作用是()。A.查询id为...
单项选择题select from student where id in(1,5,6,10)的作用是()。
A.查询id为1,2,3,4的学生的信息 B.查询id不是1,2,3,4的学生的信息 C.查询所有学生 D.删除所有学生
select from student where name like ’%小%’的功能是()。A.查询名字里...
单项选择题select from student where name like ’%小%’的功能是()。
A.查询名字里面包含’小’的学生的信息 B.查询名字里面不包含’小’的学生的信息 C.查询名字是“小”的学生的信息 D.查询名字不是“小”的学生的信息