Hello All,
I have 2 tables one field is unique and 2 have different values. Now I need to merge them hence using union, while it generating the output , one table is giving Null value however value is there when looking at the input table.
Example below
Input
Table 1
Book PV_Jam
ABS 10
ASN 10
ASM 15
Table 2
Book PV_KAM
ABS 18
ASN 10
ASM 12
Output
Table 2
Book PV_JAM PV_KAM
ABS 10 Null
ASN 10 Null
ASM 12 Null
thanks for help !