Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2023 06:01 AM
Hi Hubert, thank you for the quick reply,
to append data, extraction of data from nested data itself is failing in case if the respective derive element is failing.
example:
| Col1 | col2 |
-------------
| Hello | { A:1, B:2, C: [AA:11, BB: 22]}
My sql is like
select col2.b, explode(col2.c) from tab;
now in the above case if C element is missing then above select should not fail but return null.
Kindly help