SQL查询转换表
我在将一个看起来像这样的表转换
city | distributor | phno
---------------------------------
new york xxx 12345
new york yyy 12312
new york zzz 12313
london aaa 12315
london bbb 11111
hong konk ccc 12311
为
city | distributor1 | phno1 | distributor2 | phno2 | distributor3 | phno3
-----------------------------------------------------------------------------
new york xxx 12345 yyy 12312 zzz 12313
london aaa 12315 bbb 11111 0 0
hong konk ccc 12311 0 0 0 0
- 考虑到任何城市都没有更多的表和 3 个分销商
时遇到问题,我已经尝试过自连接,但我得到了重复的记录,请告知。
请告诉我这是否在 Excel 中完成?因为这仅用于报告目的
I got a problem transforming a table that looks like this
city | distributor | phno
---------------------------------
new york xxx 12345
new york yyy 12312
new york zzz 12313
london aaa 12315
london bbb 11111
hong konk ccc 12311
into
city | distributor1 | phno1 | distributor2 | phno2 | distributor3 | phno3
-----------------------------------------------------------------------------
new york xxx 12345 yyy 12312 zzz 12313
london aaa 12315 bbb 11111 0 0
hong konk ccc 12311 0 0 0 0
- given that any city does not more and 3 distributers
I have tried the self join but I get duplicate records, please advise.
Let me know if this be done in excel ?? as this for reporting purpose only
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您也可以在 SQL 中对表进行数据透视。
http://msdn.microsoft.com/en-us/library/ms177410.aspx
You can PIVOT tables in SQL as well.
http://msdn.microsoft.com/en-us/library/ms177410.aspx
我认为这种转换最好在报告编写器中完成,而不是在数据库中完成。
I think this kind of transformation is best done in a report writer, not in the database.
我不确定它在 Sybase SQL 中是否有效,但我仍然会在其他 SQL 服务器中从类似的内容开始:
I'm not sure if it's valid in Sybase SQL, still I would start with something like this in other SQL servers: