1、select avg(单价) from book t where 出版日期>=2010.1;
2、select 专业名 专业,count(*) 借书总量 from student t group by 专业名;
3、select * from book t where 出版社='中国文艺出版社';
4、select a.姓名 from student a,jy b where b.书名='红楼梦' and b.借书证号=a.借书证号;
5、第5题没理解题目的意思,student表不就是借书同学的表吗,如果要找出同一专业学生的所有信息是不可能的,只能找出同一专业学生数量以及相对应的专业名称
6、select t.书名,t.出版社,t.单价,
case when t.单价>30 then '昂贵' when t.单价>20 and t.单价10 and t.单价<=20 then '价格偏低' when t.单价<=10 then '不合理' end as 价位情况 from book t;
7、insert into student_jy values(select 借书证号,姓名,专业名 from student where 性别='男');
8、update book set 库存量=库存量+5 where 单价<20;
9、delete from book where 出版日期<2013.1;