I have a table PromotionRequest with 4 columns:
| PromoId | PromoType
----------------------
| 101 | 1 |
| 101 | 2 |
| 103 | 3 |
| 104 | 4 |
I have a table PromotionResponsek with 4 columns(PromoId,PromoType ,Value,PromoDesc) one of which is PromoId
I have to find all the rows in PromotionResponse whose PromoId value matches with PromoId value of PromotionRequest Table.
1 Answer