Hive子查询的别名重复的BUG

    以下SQL查出来的user_id 全为0,似乎是从ods.bbs_topic读取的user_id。将外层的别名c改成t以后,user_id取值正常

    select
        user_id
    from
    (
        select 
            a.user_id
        from    ods.bbs_praise a
          inner join    ods.bbs_reply b
          on     a.reply_id = b.id
          inner join     ods.bbs_topic c
          on     b.topic_id = c.id        
        where     cast(from_unixtime(floor(a.create_time / 1000), 'yyyyMMdd') as bigint)
                = 20181029
                  and c.user_id = 0
                  and praise_mold = 0 and reply_id > 0 
    ) c

你可能感兴趣的:(HIVE)