下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、数据库上机实验答案 3学号: 姓名: 日期:20 年 月 日实验目的:练习连接查询,练习视图。综合练习SQL查询语句。实验内容:基于提供的社交网络数据,包括:社交网络用户users表,社交网络好友关系friends表,完成如下查询,并回答问题。要求:(1)输出查询结果;(2)输出查询语句。各表的字段解释如下:Users 用户列表(id 用户IDgender 用户性别homeprovince 家乡所在省份nFriends 好友数nPosts 发表的日志数nAlbums 相册数nVisits 空间访问人数)Friends好友关系表(id 用户IDfriendID 好友ID)1 二度好友研究所谓二度
2、好友,指的是好友的好友。如果B是A的好友,而C是B的好友,那么称C为A的二度好友。(1)查询二度好友表(ID, FriendID, FFID)select a.*,b.friendID as ffID from friends as a inner join friends as b on a.friendID=b.id(2)统计用户在社交网络中的好友数、二度好友数(ID, nF, nFF)注意:社交网络中的好友数与users表中的好友数可能不同。with tb_nf as (select ID,count(*) as nf from friends group by ID),tb_nff a
3、s (select a.ID,count(*) as nff from friends as a inner join friends as b on a.friendID=b.ID and a.IDb.friendID and (b.friendID not in (select friendID from friends where ID=a.ID) group by a.id)select tb_nf.ID,nf,nff from tb_nf inner join tb_nff on tb_nf.ID=tb_nff.ID注:这里用了两个with语句来预定义两个子查询tb_nf tb_nf
4、f,分别计算nF, nFF的值。在计算nFF的值的时候,考虑到自己不能是自己的二度好友(a.IDb.friendID),以及自己的一度好友不能是自己的二度好友(b.friendID not in (select friendID from friends where ID=a.ID))。此外,注意到nF与users表中的nFriends是不同的,nFriends指的是在整个社交网络上的好友数,而nF是在我们选取的局部网络中的好友数。这个查询的结果有63条记录,而users表有64条记录。原因是其中一个user在此局部网络中没有好友,因此没有在friends表中出现。(3)根据users表,创建
5、一个完全相同的新表users_update,暂时不插入数据。create table users_update(id int,gender varchar(2),homeprovince varchar(50),nFriends int,nPosts int,nAlbums int,nVisits int)(4)在users_update后面新增两列nF, nFF。alter table users_update add nF int, nFF int(5)在users_update中插入数据。要求全部列都填写完毕。可选方案:可以先插入users数据,再update nF与nFF;或者直接插入
6、全部数据。可选方案1:可以先插入users数据,再update nF与nFF;插入users数据(64条):insert into users_update select *,null,null from users;update nF(63条):with tb_nf as (select ID,count(*) as nf from friends group by ID)update users_update set nF=tb_nf.nf from tb_nf where users_update.ID=tb_nf.ID;update nFF(63条):with tb_nff as (s
7、elect a.ID,count(*) as nff from friends as a inner join friends as b on a.friendID=b.ID and a.IDb.friendID and (b.friendID not in (select friendID from friends where ID=a.ID) group by a.id)update users_update set nFF=tb_nff.nff from tb_nff where users_update.ID=tb_nff.ID;可选方案2:直接插入全部数据with tb_nf as
8、(select ID,count(*) as nf from friends group by ID),tb_nff as (select a.ID,count(*) as nff from friends as a inner join friends as b on a.friendID=b.ID and a.IDb.friendID and (b.friendID not in (select friendID from friends where ID=a.ID) group by a.id)insert into users_update select users.*,nf,nff
9、from users left outer join tb_nf on users.ID=tb_nf.id left outer join tb_nff on tb_nf.ID=tb_nff.ID注:如果用inner join,就会出现只有63条数据,而不是64条;因为在局部网络中没有好友的用户在join时被忽略了。2 为某个用户推荐好友为用户推荐好友的最简单的和最常见的方式,就是推荐朋友的朋友。假如A有3个好友,这三个好友同时又是B的好友,那么A和B有3个共同好友。推荐好友的原则,是共同好友数越多越好。提示步骤:(1)先连接friends表与friends表,得到二度好友表(ID, Frie
10、ndID, FFID)结构的表。(2)通过对ID, FFID分组统计,得到共同好友数。(3)对结果按照ID, 共同好友数排序。(4)为你选择的ID推荐好友。select a.id,b.friendID as ffid, count(*) as cn from friends as a inner join friends as b on a.friendID=b.id where b.friendIDa.id and b.friendID not in (select friendID from friends where id=a.id) group by a.id,b.friendID order by a.id,cn desc注:where子句里两个条件分别是:推荐的结果不能是用户自己;推荐的结果不能是用户已有的好友。3 查找493173055与251048342之间的“最短路径”select a.*,b.friendID as ffid,c.fri
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 健身房器械安全管理制度
- 物流行业安全设备管理方案
- 2024生物课标培训
- 幼儿园保育培训笔记
- 自我管理总结
- 森林管护个人工作计划
- 食品加工厂安全隐患监测与应急预案
- 宝诺用友U8-ERP系统操作流程及岗位责任管理制度
- 泌尿外科主要护理措施
- DB11∕T 936.8-2020 节水评价规范 第8部分:公用纺织品洗涤服务企业
- 2024年福建漳平闽投抽水蓄能有限公司招聘笔试冲刺题(带答案解析)
- MH-T 5011-2019民用机场沥青道面施工技术规范
- 安捷伦气相色谱仪原理
- 在线网课学习知道《婺文化英语教程(上海财大浙江学院)》单元测试考核答案
- 2024届湖北省武汉市高考英语四调英语试卷 读后续写“拖延症患者的觉醒”讲义素材
- 19S406建筑排水管道安装-塑料管道
- 炎症性肠病自我管理
- 新产品上市策划及营销课件
- 电视主持人劳动合同书
- 磁新材料科技有限公司20万吨超纯铁精粉项目环评可研资料环境影响
- 大学生食品工作方面的生涯发展报告
评论
0/150
提交评论