热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mysql回行_Mysql返回多行

我有这个问题.SELECTnotes.id,enter.nameasenter_name,step.titleasflowstatus,notes.user_nameasuser_

我有这个问题.

SELECT notes.id,enter.name as 'enter_name',step.title as 'flow status',notes.user_name as user_created,notes.created,notes.rel_client_id,td_doc_nr.value_string as 'document number',enter.enter_code,

IF(!ISNULL(td_doc_nr.value_string),

(SELECT GROUP_CONCAT(product_name SEPARATOR ',') from notes d

join note_bundles b on b.note_id = d.id

join note_products p on p.doc_bundle_id = b.id

join note_product_get_fields f on f.doc_product_id = p.id

join note_product_get_field_data fd on fd.get_field_id = f.id

where d.doc_nr = td_doc_nr.value_string

and value_string ='auto')

,NULL) as test

FROM notes notes

JOIN notes_steps step ON step.id = notes.step_id

JOIN notes_enters enter ON enter.id = notes.enter_id

LEFT JOIN notes_custom_fields tf_doc_nr ON tf_doc_nr.name = 'note_number' AND tf_doc_nr.rel_entity_id = enter.id

LEFT JOIN notes_custom_field_data td_doc_nr ON td_doc_nr.rel_entity_id = notes.id AND

td_doc_nr.field_instance_id = tf_doc_nr.id

WHERE notes.enter_id in (777) AND notes.status = 1

我将此子查询添加到’if语句’

SELECT GROUP_CONCAT(product_name SEPARATOR ',') from nontes d

join note_bundles b on b.note_id = d.id

join note_products p on p.doc_bundle_id = b.id

join note_product_get_fields f on f.doc_product_id = p.id

join note_product_get_field_data fd on fd.get_field_id = f.id

where d.doc_nr = 'G7777777'

and value_string ='auto'

在此之后我添加了一个新专栏.

SELECT GROUP_CONCAT(product_name SEPARATOR ','),GROUP_CONCAT(DISTINCT b.msisdn SEPARATOR ',') from notes d

join note_bundles b on b.note_id = d.id

join note_products p on p.doc_bundle_id = b.id

join note_product_get_fields f on f.doc_product_id = p.id

join note_product_get_field_data fd on fd.get_field_id = f.id

where d.doc_nr = 'G7777777'

and value_string ='auto'

它返回两列.

如何返回两列?有可能吗? :) 谢谢



推荐阅读
author-avatar
手机用户2502857341
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有