Answered step by step
Verified Expert Solution
Question
1 Approved Answer
How to combine two queries to one in sql? I have two sql tables , where one is CARD_TRANSACTION and other RD_PASSENGERTYPE, the queries are
How to combine two queries to one in sql?
I have two sql tables , where one is CARD_TRANSACTION and other RD_PASSENGERTYPE,
the queries are here,
select passengertypekey from CARD_TRANSACTION where daykey = 15738 and id = '70750813';
select passengertypedesc from RD_PASSENGERTYPE where passengertypekey=1;
I want to combine both of them and get the passengertypedesc, i will pass the id and daykey to the query. please help
Thank you
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started