使用 Oracle 转置选择结果
我的问题是,有一些背景:
我必须根据表元数据(列格式)生成一些sql查询,结果类似于:(
TABLENAME1|COL1
TABLENAME1|COL2
TABLENAME2|COL1
TABLENAME2|COL2
TABLENAME2|COL3
TABLENAME3|COL1
TABLENAME4|COL1
TABLENAME4|COL2
... /*some other 1800 rows */
是的,它是有序的。) 我需要的是根据第一列转置这些数据,因此预期输出将是:
TABLENAME1|COL1|COL2|NULL
TABLENAME2|COL1|COL2|COL3
TABLENAME3|COL1|NULL|NULL
TABLENAME4|COL1|COL2|NULL
/* less then 1800 rows ;-) */
Is it possible using Oracle SQL?
提前致谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想为每个调用生成查询或使用硬编码的最大列计数,那么您可以执行类似的操作:
如果以这种形式获取它就足够了,
请查看 Tom Kyte 的 stragg。
If you want to generate the query for each call or use a hardcoded max-column-count, then you can do something like that:
If it is sufficient to get it in that form
have a look at Tom Kyte's stragg.
您要查找的关键字是
pivot
。 这是其使用示例。其语法通常与 MSSQL 相同,并且由于我不知道 Oracle 文档的 URL,因此我将放弃 MSDN 链接,希望比我更了解 Oracle 页面布局的人能够编辑它以指向他们的文档。编辑:Oracle 文档,搜索旋转足够多次,您就会了解详细信息。
The keyword that you're looking for is
pivot
. Here's an example of its use. The syntax appears generally the same as MSSQL, and since I don't know the url for Oracle's documentation I'll toss up the MSDN link and hope that someone that knows more about Oracle's page layout than me will edit it to point to their documentation.EDIT: Oracle documentation, search for pivot enough times and you'll get to the details.