佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > MySQL將一個字段中以逗號分隔的取出來形成新的字段實(shí)現(xiàn)

MySQL將一個字段中以逗號分隔的取出來形成新的字段實(shí)現(xiàn)

熱門標(biāo)簽:鐵路電話系統(tǒng) 網(wǎng)站排名優(yōu)化 百度競價排名 服務(wù)外包 呼叫中心市場需求 Linux服務(wù)器 AI電銷 地方門戶網(wǎng)站

1例如:要把如圖1的字段拆分圖2

select account_id,
    substring_index(substring_index(a.related_shop_ids,','
    ,b.help_topic_id+1),',',-1) shopid
  from 
    sales_hang_account a
  join
    mysql.help_topic b
    on b.help_topic_id  (length(a.related_shop_ids) -   length(replace(a.related_shop_ids,',',''))+1) 
  order by a.account_id

2:然后和shops表進(jìn)行連接查詢?nèi)〕鑫覀冃枰淖侄?,我這里需要取出name

select s.`name` as shopname,a.account_id from shops s
inner JOIN (

select account_id,
    substring_index(substring_index(a.related_shop_ids,','
    ,b.help_topic_id+1),',',-1) shopid
  from 
    sales_hang_account a
  join
    mysql.help_topic b
    on b.help_topic_id  (length(a.related_shop_ids) -   length(replace(a.related_shop_ids,',',''))+1) 
  order by a.account_id)a on s.shop_id=a.shopid

3:將 account_id相同合并成一行,以逗號隔開

//這兩個是網(wǎng)上的例子
select ID,group_concat(NAME) as NAME from table group by ID;

select ID,group_concat(NAME SEPARATOR ';') as NAME from a group by ID;
//借助上面兩個參考
select account_id,GROUP_CONCAT(shopname SEPARATOR',')as shopname from (select s.`name` as shopname,a.account_id from shops s
inner JOIN (

select account_id,
    substring_index(substring_index(a.related_shop_ids,','
    ,b.help_topic_id+1),',',-1) shopid
  from 
    sales_hang_account a
  join
    mysql.help_topic b
    on b.help_topic_id  (length(a.related_shop_ids) -   length(replace(a.related_shop_ids,',',''))+1) 
  order by a.account_id)a on s.shop_id=a.shopid) a GROUP BY account_id

效果如下

第二種方法

select g.account_id,g.related_shop_ids,GROUP_CONCAT(s.name)as shopname from sales_hang_account g left join shops s on FIND_IN_SET(s.shop_id , g.related_shop_ids)
GROUP BY g.account_id

SqlServer

 [Product] -- 該字段存儲格式為 7,8,9,11,10,12 ,數(shù)據(jù)類型為nvarchar
select id,ProductName=stuff((select ',' + product_chinaname from base_supplier_product where charindex(','+ltrim(productid)+',',','+ Product + ',') > 0 for xml path('') ), 1, 1, '')
 FROM base_Pre_sale_project

結(jié)果

到此這篇關(guān)于MySQL將一個字段中以逗號分隔的取出來形成新的字段實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)MySQL字段逗號分隔內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • MySql逗號拼接字符串查詢的兩種方法
  • Mysql 取字段值逗號第一個數(shù)據(jù)的查詢語句
  • 在MySQL字段中使用逗號分隔符的方法分享
  • MySQL中將一列以逗號分隔的值行轉(zhuǎn)列的實(shí)現(xiàn)

標(biāo)簽:黃山 衡水 湘潭 崇左 仙桃 銅川 蘭州 湖南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MySQL將一個字段中以逗號分隔的取出來形成新的字段實(shí)現(xiàn)》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    闽清县| 剑阁县| 运城市| 通辽市| 攀枝花市| 都江堰市| 北川| 水富县| 蒙阴县| 太仓市| 防城港市| 凤山市| 云安县| 灵宝市| 定襄县| 烟台市| 库车县| 青田县| 桂林市| 凭祥市| 扎兰屯市| 马山县| 常德市| 中西区| 手游| 乐都县| 阿拉善左旗| 兴文县| 彰化市| 弋阳县| 闻喜县| 双柏县| 屯留县| 梓潼县| 万年县| 延安市| 兰溪市| 始兴县| 莫力| 阿城市| 扬中市|