Hi,
I have data as follows in a table called TNR_RESP
RESP_ID | TYP_ID | CXL_RESP_ID
123 | 1 | ABC
ABC | 0 |
If i pass RESP_ID = 123 to the query, i wanted to see RESP_ID, TYP_ID, CXL_RESP_ID and TYP_ID of CXL_RESP_ID
Here ABC is reference of another RESP_ID in the same table
I want to see the result as follows
123 1 ABC 0
How do we get the result?
I appreciate your help.
Thanks