当前位置:网站首页>pgsql 字符串转数组关联其他表,匹配 拼接后原顺序展示
pgsql 字符串转数组关联其他表,匹配 拼接后原顺序展示
2022-07-02 09:41:00 【wyazyf】
实现原理:
1.unnest(string_to_array(mnc.email_user_id , ','))字符串转数组 在转成行然后进行匹配
2.WITH ORDINALITY a(user_id, nr)此函数用于显示下标,便于后边排序
3.匹配后按原顺序聚合即可
源数据如下图红框中
想要实现的效果如下(顺序一致)
实现的sql如下
select
string_agg(b.user_name || '(' || b.user_id || ')', ',')as emailUserName ,
b.email_user_id
from
(
select
su.user_name,
su.user_id ,
mnc.*
from
fas_mail_notification_config mnc,
unnest(string_to_array(mnc.email_user_id , ','))with ordinality a(user_id,nr)
left join sec_user su on a.user_id = su.user_id
where
mnc.delete_flg = 0
and mnc.bg_id = '49bd50924c434556aca0193bcffb2dce'
and mnc.business_type = '1'
order by
mnc.id,
mnc.bg_id ,
a.nr
)b
group by
b.id,
b.bg_id,
b.email_user_id
边栏推荐
- GGPlot Examples Best Reference
- SSRF
- GGPLOT: HOW TO DISPLAY THE LAST VALUE OF EACH LINE AS LABEL
- 念念不忘,必有回响 | 悬镜诚邀您参与OpenSCA用户有奖调研
- Programmer growth Chapter 6: how to choose a company?
- Order by injection
- Jenkins installation
- ren域名有价值吗?值不值得投资?ren域名的应用范围有哪些?
- Installation of ROS gazebo related packages
- tidb-dm报警DM_sync_process_exists_with_error排查
猜你喜欢
6. Introduce you to LED soft film screen. LED soft film screen size | price | installation | application
What is the relationship between digital transformation of manufacturing industry and lean production
map集合赋值到数据库
可升级合约的原理-DelegateCall
How to Add P-Values onto Horizontal GGPLOTS
HOW TO CREATE A BEAUTIFUL INTERACTIVE HEATMAP IN R
念念不忘,必有回响 | 悬镜诚邀您参与OpenSCA用户有奖调研
由粒子加速器产生的反中子形成的白洞
Tdsql | difficult employment? Tencent cloud database micro authentication to help you
From the perspective of attack surface, see the practice of zero trust scheme of Xinchuang
随机推荐
Summary of flutter problems
基于 Openzeppelin 的可升级合约解决方案的注意事项
PLC-Recorder快速监控多个PLC位的技巧
RPA进阶(二)Uipath应用实践
揭露数据不一致的利器 —— 实时核对系统
Wechat applet uses Baidu API to achieve plant recognition
GGHIGHLIGHT: EASY WAY TO HIGHLIGHT A GGPLOT IN R
基于Hardhat编写合约测试用例
Precautions for scalable contract solution based on openzeppelin
抖音海外版TikTok:正与拜登政府敲定最终数据安全协议
Summary of data export methods in powerbi
Research on and off the Oracle chain
亚马逊云科技 Community Builder 申请窗口开启
R HISTOGRAM EXAMPLE QUICK REFERENCE
Amazon cloud technology community builder application window opens
C#多维数组的属性获取方法及操作注意
PX4 Position_ Control RC_ Remoter import
预言机链上链下调研
电脑无缘无故黑屏,无法调节亮度。
Pyqt5+opencv project practice: microcirculator pictures, video recording and manual comparison software (with source code)