求助SQL考试题。。明天早上就考了 今晚要交
发布网友
发布时间:2022-04-22 14:34
我来回答
共2个回答
热心网友
时间:2022-05-01 19:10
1.select 书名,出版社 from 图书 where 20=<价格=<50 order by 价格 desc
2.select distinct a.书号 as 图书种类 ,a.操作员帐号 from 借出 a,操作员 b where a.操作员帐号=(select b.操作员帐号 from 操作员 where 操作员姓名='李凡')
3.select 书名,出版社 from 图书 where 书名 like '%数据库%' or 书名 like '%SQL%'
4.delete from 课程 where 课程编号 in ( '20016','20018','20019')
5.insert into 教师 (教师编号,姓名,所在部门,职称) values (60016,王力,,讲师)
6.select a.生产厂家,count(b.商品编号) as 商品种类 from 商品 b,(select distinct 生产厂家 from 商品) as a where a.生产厂家=b.生产厂家 group by a.生产厂家
热心网友
时间:2022-05-01 20:28
1.select 学号,姓名 from 学生 where 学号 not in (select 学号 from 选课)
2. select 学号,姓名 from 学生 where 学号 in (select 学号 from 选课 where 成绩<60 and 课号=(select 课号 from 课程 where 课名='VB'))
3. select a.学号,b.成绩 from 学生 as a,选课 as b where a.学号=b.学号 amd b.课号 in (select 课号 from 课程 where 学分>3 )