标签:拆分 一个 dex image topic rom select col print
help_topic表是数据库mysql下的一个表
SUBSTRING_INDEX(s, delimiter, number)
返回从字符串 s 的第 number 个出现的分隔符 delimiter 之后的子串。
SELECT SUBSTRING_INDEX(‘a*b*c*d*e‘,‘*‘,3); ---- a*b*c
SELECT SUBSTRING_INDEX(‘a*b*c‘,‘*‘,-1); ---- c
SELECT SUBSTRING_INDEX(SUBSTRING_INDEX(‘a*b*c*d*e‘,‘*‘,3),‘*‘,-1); ---- c
示例:
select a.id, a.username, substring_index(substring_index(a.course, ‘|‘, b.help_topic_id + 1), ‘|‘, -1) course from student a JOIN mysql.help_topic b ON b.help_topic_id < (length(a.course) - length(REPLACE(a.course, ‘|‘, ‘‘)) + 1);
标签:拆分 一个 dex image topic rom select col print
原文地址:https://www.cnblogs.com/likaixin/p/11271756.html