用法1:
如圖:想要將parent_nums 中的字串拆分成列表
結果:用法二:
在資料查詢中,有一張a表存有另一張b表的id並以『,』隔開
如:
假設現在要關聯查詢關於 b表的一些資訊,怎麼辦。
分割查詢:字串轉列表函式 :regexp_split_to_table()
select * from regexp_split_to_table ((select product_ids from fee_project_meal where id = 116199376233182210 ), ',')
查詢後,字串就變成了列表,然後你就可以根據這個列表去找b表的相關資訊了。
select *
from pm.product
where id::text in
(select * from regexp_split_to_table ((select product_ids from bp.fee_project_meal where id = 116199376233182210 ), ','))
首先資料驗證是正確的,說明sql沒有問題,接下來就是一起關聯查詢了
1.因為這個a表與b表是一對多的關係,所以我們先關聯出多條。
select a.id as "a表_id",
a.name as "a表_name",
p.name as "b表_name"
2.還有一種就是 我只要查出a表的資料,b表的資料中某些欄位做未拼接的形式存在,也就是說 現在要查出a表的資料
select
a.id as "a表_id",
a.name as "a表_name",
bb.p_id as "b表_拼接id",
bb.p_name as "b表_拼接name"
以上就是,字串欄位的拆解查詢。
mysql分割字串 mysql分割字串
專案有通過一批id去過濾結果的需求,因為這個id是從其他平台拉下來的excel,為了避免加引號逗號的麻煩,在mysql儲存過程裡面拼接。在此做個記錄。很多地方用得上。1.通過某個字元,分割字串的函式。輸入分別為f string 待分割字串 f delimiter 分割字元 f order 取的字串的...
分割字串
string.split char 返回包含此例項中的子字串 由指定 char 陣列的元素分隔 的 string 陣列。由 net compact framework 支援。string.split char,int32 返回包含此例項中的子字串 由指定 char 陣列的元素分隔 的 string ...
分割字串
最近手裡的活用到分割字串,自己嘗試寫了乙個,在網上找到幾個,留著以後備用。char steps char token char strusbinfo 512 memcpy strusbinfo,1e 2f 3g strlen 1e 2f 3g token strtok strusbinfo,step...