Hi Everyone,
I am looking for a solution on how to include null values when joining two data sets. One of my inputs is a template and I would like to keep it as it is including the nulls. Thanks!!!
Solved! Go to Solution.
Hi @mzp
We'd need a sample of your data and understand how your workflow and your join is set up.
Cheers,
You may want to consider the append tool. Without seeing your data, I can't be sure, but I think you are looking to append data, not join it.
Hi @mzp,
Simplest way to do that is change the null value to a string like NVL(field, 'Unknown'), then you can include the null values.
This would work if I understood the need correctly. If you need to keep the NULLs from the Right input, or both, move, or add another, filter to the right output and connect into the Union.
Hope this helps!
Jimmy
Teknion Data Solutions
This is exactly what I needed! thanks you! :)