题解 | 提取博客URL中的用户名
提取博客URL中的用户名
https://www.nowcoder.com/practice/26c8715f32e24d918f15db69518f3ad8
select device_id, substring_index(blog_url,'/','-1') user_name from user_submit
加深印象substring_index(a,b,c),截取字符串函数
提取博客URL中的用户名
https://www.nowcoder.com/practice/26c8715f32e24d918f15db69518f3ad8
select device_id, substring_index(blog_url,'/','-1') user_name from user_submit
加深印象substring_index(a,b,c),截取字符串函数
相关推荐