按要求写出查询SQL语句
发布网友
发布时间:2022-04-10 10:17
我来回答
共2个回答
热心网友
时间:2022-04-10 11:47
没有数据库类型,没有表结构啊,只能写伪代码了
1)select * from table_student where in_year=2012 and subject='计算机学院'
2)select count(1) from table_student where 校区='江宁西校区' and building='8栋' and room='302-1'
3)这道题有些模糊,给的条件不明确。是平均成绩已经计算好放在表中了呢,还是只有单科成绩,需要你来计算平均成绩呢?
如果是前者,sql还好写一点,后者,就相对麻烦了
这里假定是前者
select * from table_mark where student_type='非计算机专业' and class_type='选修' and department='计算机学院'
热心网友
时间:2022-04-10 13:05
1、select * from Students where '入学年份字段'=2012
2、select count(*) from Sudents where '校区字段'='江宁西校区','楼房几栋字段'=8 and ’房间字段
=’302-1‘
3、select Course,avg(Course.Grade) from Students where '计算机学院开设的课程、由非计算机专业学生选修'
好久没写过sql查询更新语句了,不敢十分确定,希望能给阁下带来点启示。