当前位置:网站首页>Oracle combines multiple rows of data into one row of data
Oracle combines multiple rows of data into one row of data
2022-07-05 09:41:00 【Acacia seed~】
Preface
When I was paddling, I saw someone ask this question , Write a handy sql Make a note of .
primary sql data ( Multiple lines )
select null as v1_name, 1 as v1, ' name 2' as v2_name, 2 as v2
from dual
union all
select ' name 3' as v1_name, 3 as v1, ' name 4' as v2_name, 4 as v2
from dual
After the merger
select (wm_concat(a.v1_name)) as v1_name,
(wm_concat(a.v1)) as v1,
(wm_concat(a.v2_name)) as v2_name,
(wm_concat(a.v2)) as v2
from (select null as v1_name, 1 as v1, ' name 2' as v2_name, 2 as v2
from dual
union all
select ' name 3' as v1_name, 3 as v1, ' name 4' as v2_name, 4 as v2
from dual) a
边栏推荐
- Unity SKFramework框架(二十三)、MiniMap 小地图工具
- Talking about the difference between unittest and pytest
- Can't find the activitymainbinding class? The pit I stepped on when I just learned databinding
- 【两个对象合并成一个对象】
- TDengine 已经支持工业英特尔 边缘洞见软件包
- Nips2021 | new SOTA for node classification beyond graphcl, gnn+ comparative learning
- Greendao reported an error in qigsaw, could not init daoconfig
- Thermometer based on STM32 single chip microcomputer (with face detection)
- LeetCode 503. 下一个更大元素 II
- Node の MongoDB Driver
猜你喜欢
揭秘百度智能测试在测试自动执行领域实践
Lepton 无损压缩原理及性能分析
OpenGL - Lighting
一文读懂TDengine的窗口查询功能
百度APP 基于Pipeline as Code的持续集成实践
Creation and reference of applet
Global configuration tabbar
LeetCode 31. 下一个排列
The popularity of B2B2C continues to rise. What are the benefits of enterprises doing multi-user mall system?
Android 隐私沙盒开发者预览版 3: 隐私安全和个性化体验全都要
随机推荐
LeetCode 496. 下一个更大元素 I
Creation and reference of applet
【组队 PK 赛】本周任务已开启 | 答题挑战,夯实商品详情知识
Online chain offline integrated chain store e-commerce solution
【js 根据对象数组中的属性进行排序】
测试老鸟浅谈unittest和pytest的区别
AUTOSAR from getting started to mastering 100 lectures (103) -dbc file format and creation details
TDengine可通过数据同步工具 DataX读写
[ManageEngine] how to make good use of the report function of OpManager
Can't find the activitymainbinding class? The pit I stepped on when I just learned databinding
7 月 2 日邀你来TD Hero 线上发布会
[sorting of object array]
An article takes you into the world of cookies, sessions, and tokens
[how to disable El table]
TDengine ×英特尔边缘洞见软件包 加速传统行业的数字化转型
[ctfhub] Title cookie:hello guest only admin can get flag. (cookie spoofing, authentication, forgery)
【技术直播】如何用 VSCode 从 0 到 1 改写 TDengine 代码
Uni app implements global variables
【el-table如何禁用】
Nips2021 | new SOTA for node classification beyond graphcl, gnn+ comparative learning