问题描述
- oracle 相关问题 求以逗号分割字符串方法
-
SELECT * FROM (
select * from t WHERE t.report_id='4NET') t1 LEFT JOIN(
SELECT * FROM r where r .sysflag='11'
)t2ON t1.subject_contrast=t2.report_item_code
现在问题是 t1.subject_contrast 的数据可能有逗号出现 如 12,13,14,15
需求 以逗号分割 并与t2.report_item_code 依次比较
时间: 2024-12-21 16:04:08