龙_龙_ 2014-04-23 03:13 采纳率: 50%
浏览 3255
已采纳

一个ORACLE字段包含多个ID如何解决

表1:

+------------+--------------+-----------------+
| product_id | product_name | product_type_id |
+------------+--------------+-----------------+
| 1 | 产品A | 1,2 |
| 2 | 产品B | 2,3 |
+------------+--------------+-----------------+
表2:

+-----------------+-------------------+
| product_type_id | product_type_name |
+-----------------+-------------------+
| 1 | 类别1 |
| 2 | 类别2 |
| 3 | 类别3 |
+-----------------+-------------------+:

生成以下效果:

+------------+--------------+-----------------+
| product_id | product_name | type |
+------------+--------------+-----------------+
| 1 | 产品A | 类别1,类别2 |
| 2 | 产品B | 类别2,类别3 |
+------------+--------------+-----------------+

在网上查了都是关于mysql的语句如:select product_id,product_name,group_concat(product_type_name) as type from ab,ac where instr(ab.product_type_id,ac.product_type_id) group by product_id,product_name;

可是在oracle上不能用求大神帮忙呀!

  • 写回答

1条回答 默认 最新

  • R_engine 2014-06-15 04:53
    关注

    select product_id,product_name,listagg(product_type_name,',')
    within group(order by product_id,product_name) as "type"
    from table1,table2 group by product_id,product_name
    11g方可使用

    如果版本过低,使用wm_concact函数代替

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化