按下列需求写出sql查询语 如何写出高性能的sql
按要求写出查询SQL语句
展开全部
没有数据库类型,没有表结构啊,只能写伪代码了
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='计算机学院'
请用SQL语言写出满足下列要求的查询语句
假设第一个表表名为A,第二个为B;
1)select A.姓名,B.借书证号,A.图书号,A.借阅时间 from A inner join B on A.借书证号=B.借书证号 and B.系别='电子商务';
2)select B.姓名,A.图书号,A.借书证号,B.系别 from A,B where A.借书证号 in (select 借书证号 from A where 借阅时间<2002/11/30);
第一个用的连接查询即:inner join
第二个用的嵌套查询即:in (select 借书证号 from A where 借阅时间<2002/11/30);
请按要求写出SQL查询语句
select max(姓名),地区,max(工资) from 查询的表 group by 地区 order by 工资 desc
按下列要求 写 sQL语句
-- 一题
create table s--学生表
(sno char(8) primary key,--学号
sname char(10) ,--姓名
sage int ,--年龄
ssex char(2),--性别
sdept char(20))--所在系
create table c--课程表
(cno char(4) primary key,--课程号
cname char(20),--课程名
c_dept char(20),--开课系
teacher char(10))--老师
create table sc--成绩表
(sno char(8) not null,--学号
cno char(4) not null,--课程号
grade int ,--成绩
constraint PK_sc primary key(sno,cno),--主键
constraint PK_s_sno foreign key(sno) references s(sno),--外键
constraint FK_c_cno foreign key(cno) references c(cno))--外键
--二题
--1
select cno,cname
from c
where teacher='刘'
--2
select sname
from s
where ssex='女'
and sno in (select sno
from sc
where cno in(select cno
from c
where teacher='刘'))
--3
select cno
from c
where not exists(select * from s,sc
where s.sno=sc.sno
and sco=co
and sname='王乐')
--4
select count(distinct Cno) as 课程门数
from sc
--5
select avg(grade)
from sc
where cno='c4'
--6
select co,avg(grade) as avg_grade
from sc,c
where sco=co and teacher='刘'
group by co
--7
select sname,sage
from s
where sname like'王%'
--8
select sname,sage
from s
where ssex='男' and
sage>all(select sage
from s
where ssex='女')
--9
insert into s(sno,sname,sage)
values('009','吴',18)
--10
delete from sc
where grade is null
--11
update sc
set grade=0
where cno in (select cno
from c
where cname='数据库')and grade<60
--12
update sc
set grade=grade*1.05
where sno in(select sno from s where ssex='女'
and grade<(select avg(grade) from sc))