当前位置:   article > 正文

Python爬虫数据处理_com_addr是什么意思

com_addr是什么意思


一、首先理解下面几个函数

设置变量 length()函数 char_length() replace() 函数 max() 函数
1.1、设置变量 set @变量名=值

  1. set @address='中国-山东省-聊城市-莘县';
  2. select @address

1.2 、length()函数 char_length()函数区别

  1. select length('a')
  2. ,char_length('a')
  3. ,length('中')
  4. ,char_length('中')

1.3、 replace() 函数 和length()函数组合

  1. set @address='中国-山东省-聊城市-莘县';
  2. select @address
  3. ,replace(@address,'-','') as address_1
  4. ,length(@address) as len_add1
  5. ,length(replace(@address,'-','')) as len_add2
  6. ,length(@address)-length(replace(@address,'-','')) as _count

etl清洗字段时候有明显分割符的如何确定新的数据表增加几个分割出的字段

计算出com_industry中最多有几个 - 符 以便确定增加几个字段 最大值+1 为可以拆分成的字段数 此表为3 因此可以拆分出4个行业字段 也就是4个行业等级

  1. select max(length(com_industry)-length(replace(com_industry,'-',''))) as _max_count
  2. from etl1_socom_data

1.4、设置变量 substring_index()字符串截取函数用法

  1. set @address='中国-山东省-聊城市-莘县';
  2. select
  3. substring_index(@address,'-',1) as china,
  4. substring_index(substring_index(@address,'-',2),'-',
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/422604
推荐阅读
相关标签
  

闽ICP备14008679号