Select
t1.cust_id,
`(cust_id|as_of_dt|pref.*|interest.*|incentive|currency)?+.+`
from
TAB1 t1
left join TAB2 t2 on (t1.key1 = t2.key1) and (t1.key2 = t2.key2);
There is a starting backtick just before (cust_id... and ending backtick after currency)?+.+
Somehow it is not getting displayed here.
What do the backticks mean. Does it mean that all the columns within curly brackets within the backticks have to be ignored while selecting colums from 2nd table?
This query does not work in Hive on Mapr Installation.