1. 已知教学管理数据库中学生表的结构如下:学生(学号,姓名,性别,年龄,专业),现要查询姓名为王某华的学生的信息,则查询语句应该是()
A.select * from 学生 where 姓名 like '王_华'
B.select * from 学生 where 姓名='王_华'
C.select * from 学生 where 姓名 like '王%华'
D.select * from 学生 where 姓名='王%华'
正确答案是A
1. 已知教学管理数据库中学生表的结构如下:学生(学号,姓名,性别,年龄,专业),现要查询姓名为王某华的学生的信息,则查询语句应该是()
A.select * from 学生 where 姓名 like '王_华'
B.select * from 学生 where 姓名='王_华'
C.select * from 学生 where 姓名 like '王%华'
D.select * from 学生 where 姓名='王%华'
正确答案是A