hive_sql

作者: hehehehe | 来源:发表于2021-11-12 15:06 被阅读0次
select a.*,b.valid_state,b.valid_state from 
(select * from poi_release.map_poi_hn_click_validity_problem where dt = '2021-11-12' and valid_state != 'no_record') a 
inner join 
(select * from poi_release.map_poi_hn_click_validity_problem where dt = '2021-11-09' and valid_state = 'no_record') b
on a.c_address = b.c_address ;

纯数字

select industry_code,industry_name from base_organization where (industry_name REGEXP '[^0-9.]')=0 ;

相关文章

网友评论

      本文标题:hive_sql

      本文链接:https://www.haomeiwen.com/subject/wvhozltx.html