当前位置: 代码迷 >> SQL >> 惯用SQL语句(原)
  详细解决方案

惯用SQL语句(原)

热度:50   发布时间:2016-05-05 13:43:55.0
常用SQL语句(原)
?
用的是 sqlserver2000的数据库,用查询分析器全部验证通过,作的时候比较急可能会有错误,希望大家批评指正,也希望大家继续添加.

???

???

一 查询语句

-1查询所有记录从student

Select * from student

-2.查询部s_no,s_name段从student中。

select s_name,s_no from student

-3查询并采用别名选择s_name,=(姓名),s_no(学号)从student

select 学号=s_no, 姓名=s_name??? from student

或者select s_no as 学号,s_name as 姓名??? from student

-4查询年龄在23岁以上的所有学生的姓名和年龄并按照年龄倒排序

select s_name,s_age from student where s_age>23 order by s_age desc

-5查询姓张的所有学生

select??? *from student where s_name like'张%'

-6查询所有年龄在23-25之间,并且是男学生,还要姓张,只返回前一条记录,并按照年龄和所在系倒排序。

select??? top 1*from student where s_name like'%张%' and s_sex='男' and??? s_age between 23 and 25 order by s_age desc, s_dept asc

-7查询既不是交通工程系,也不是土木的学生的姓名和年龄及所在系。

select s_name,s_age ,s_dept from student where s_dept not in('交通工程系','土木')

-8查询所有学生中不姓张的学生

select * from student where s_name not like '张%'

-9从学生表中查询学号的最后一位不在6-9范围内的学生情况

select * from student where substring(s_no,8,1) not like'[6-9]'

-10查询成绩表中成绩是空的学生的情况

select * from sc where c_grade=null

-11查询学生总人数

select count(*) as 总人数 from student

-12查询选修了课程的学生人数

select count(*) as 总人数 from sc

-13计算所有男生的成绩之和

select sum(c_grade)from sc sc ,student where s_sex='男'and student.s_no=sc.s_no

-14查询课程号为c002的学生平均成绩

select avg(c_grade)from sc??? where c_no='c002'

-15查询选修了课程的学生

select count(distinct s_no) from sc

-16查询选修了r001课程的学生最高分和最低分。

select max(c_grade),min(c_grade) from sc where c_no='r001'

-17统计每门课程的选课人数,并列出课程号和人数

select c_no ,count(*)from sc group by c_no

-18查询每名学生的选课门数和平均成绩

select s_no ,count(*),avg(c_grade)from sc group by s_no

-19查询修了3门以上课程的学生学号

select s_no ,count(*)from sc group by s_no having count(*)>=3

-20查询修课门数大于等于3的学生平均成绩和选课门数

select s_no ,avg(c_grade),count(*)from sc group by s_no having count(*)>=3

?

-21查询每个学生的修课情况

select * from student ,sc where student.s_no=sc.s_no(两个表中的学号字段均列出)

?

-22查询计算机学生的修课情,要求列出学生的名字、所修课程号和成绩

select s_name,c_no ,c_grade from student a ,sc b where s_dept='计算机'and a.s_no=b.s_no

-23查询选修了大学语文课程的学生修课成绩,要求列出学生的名字,所修的课程名和成绩

elect s_name,c_name ,c_grade from student a ,sc b,course c where c_name='大学语文'and a.s_no=b.s_no and b.c_no=c.c_no

-24将学生的姓名,修课的课程名和成绩存放在永久表s_c_g

select a.s_name,c.c_name ,b.c_grade into s_c_g from student a ,sc b,course c

-25查询修了roo1课程的切成绩成绩高于此课程的平均成绩的学生的学号和成绩

select s_no ,c_grade from sc where c_no='r001' and c_grade>(select avg(c_grade) from sc where c_no='r001')

-26查询与李四在同一个系学习的学生

select s_name from student where s_dept=(select s_dept from student where s_name='李四')and s_name<>'李四'

-27??查询全体学生的姓名和出生年份

select s_name,nf=datepart(yyyy,getdate())-s_age from student

二 更新语句

-1将新生记录(20010694、陈东、男、交通工程系、22岁)插入到表student

insert into student(s_no,s_name,s_sex,s_dept,s_age)values('20010694','陈东','男','交通工程系','22')

-2 在 sc表中插入一条新记录,成绩暂缺

insert into sc(s_no,c_no,c_grade)values('20010694','j002',null)

-3将所有学生功的年龄加一

update student set s_age=s_age+1

-4 删除所有学生的选课记录

delete from sc

-5删除所有成绩不几个学生的成绩记录

Delete from sc where c_grade<60

-6删除计算机不几个学生的修课记录

delete from sc where c_grade<60 and s_no in(select s_no from student where s_dept='计算机')

1 楼 抛出异常的爱 2008-09-02  


有oracle的没有?
2 楼 zzq230 2008-09-02  
oracle的没有,sql基本上都是通用的
3 楼 jiahch 2008-09-05  
我看了一下,基本属于基础查询;
再有点更深刻一点的,接近实际项目应用的就好了;

初级开发工程师面试常问得一般是 排重语句,子查询之类 ,或者 cursor之类吧 ;
4 楼 ahua3515 2008-09-09  
有没有更bt的呀
  相关解决方案