题解 | #提取博客URL中的用户名#
提取博客URL中的用户名
https://www.nowcoder.com/practice/26c8715f32e24d918f15db69518f3ad8
select device_id, SUBSTR(blog_url,11) user_name from user_submit; #SUBSTR (str, pos) #截取从pos位置开始到最后的所有str字符串
提取博客URL中的用户名
https://www.nowcoder.com/practice/26c8715f32e24d918f15db69518f3ad8
select device_id, SUBSTR(blog_url,11) user_name from user_submit; #SUBSTR (str, pos) #截取从pos位置开始到最后的所有str字符串
相关推荐