Member since
04-28-2020
1
Post
0
Kudos Received
0
Solutions
04-29-2020
01:54 PM
I just ran the following query through Hive and it worked as expected. select
col1,
col2,
case when col1 = "Female" and col2 = "Yes" then "Data Received" end
from table_name limit 100; Can you provide some steps to reproduce?
... View more