题目详情
单选题 查询入学分数小于300或者大于400的 男生的学生信息,以下写法错误的是
A. select * from student where (score<300 or score>400) and Sex='男'
B. select * from student where score not between 300 and 400 and Sex='男'
C. select * from student where score<300 or score>400 and Sex='男'
D. select * from student where score<300 and sex='男' or score>400 and Sex='男'

学科:数据库技术
时间:2025-06-17 10:24:23
相关题目
相关作业
