Hi,
Is there any way to match the column names between two tables.
EMP:
EMP_NUM
EMP_NAME
EMP_DEPT
EMP_SALARY
SALARY
EMP_NUM
EMP_DEPT
EMP_SALARY
My Requirement
In both the table EMP_NUM, EMP_DEPT, EMP_SALARY got matched. I need to write this in the output.
Output
EMP_NUM = EMP_NUM
EMP_DEPT = EMP_DEPT
EMP_SALARY = EMP_SALARY
Thanks in advance