没看懂这个啊 一般不是用
create table tmp_gender_correct_table as
select
Id,Name,Age
case when gender='F'
then 'M'
when gender='M' then 'F'
end as new_gender
from
HIVE_LEARN_ERROR_INFO_TALBE
where id is not null and gender is not null