SQLServer数据库中如何合并表格数据

SQL Server数据库是如何合并表格数据的呢?其实SQL Server数据库合并表格数据是利用ROW_NUMBER来实现的,本文我们通过一个例子来介绍如何合并表格数据。我使用的数据库版本是SQL Server 2005,表格的原始数据如下:

这个一个学习和测试的记录,Type是类型(0学习,1测试)。一天中可能会学习多次,也可能会测试多次,学习次数和测试次数可能不一样。

想要的到得是,按日期列出当天学习和测试的记录。

类似这样的结果:(图中两行数据一样,是两种语言表示)

主要的SQL语句如下:

 
 
 
 
  1. select A.Date,A.MID,A.Contents1,B.Contents2,B.Passed from
  2. (select ROW_NUMBER() over(partition by Date order by Date) as MID,Date,Contents as Contents1 from History where Type=0 ) A
  3. left join 
  4. (select ROW_NUMBER() over(partition by Date order by Date) as MID,Date,Contents as Contents2,Passed from History where Type=1 ) B
  5. on A.Date=B.Date and A.MID=B.MID
  6. union
  7. select  B.Date,B.MID, A.Contents1,B.Contents2,B.Passed from
  8. (select ROW_NUMBER() over(partition by Date order by Date) as MID,Date,Contents as Contents1 from History where Type=0 ) A
  9. right join 
  10. (select ROW_NUMBER() over(partition by Date order by Date) as MID,Date,Contents as Contents2,Passed from History where Type=1) B
  11. on A.Date=B.Date and A.MID=B.MID

结果如下:

至此,表格的数据已经合并完毕了。

关于SQL Server数据库合并表格数据的知识就介绍到这里,如果您想了解更多关于SQL Server数据库的知识,可以看一下这里的文章:http://database./sqlserver/,相信一定会带给您收获的!

分享名称:SQLServer数据库中如何合并表格数据
文章地址:http://www.mswzjz.cn/qtweb/news49/321199.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能