User-1183458339 posted
Dear All,
Can any one tell me how to join three tables and display in a gridview . I've three tables in mysql php
Table 1
order_id | name | custProd_id
1 tim 2
2 Jon 1
Table 2
custProd_id | Prod_id | quantity
1 2 1
2 3 1
Table 3
Prod_id | Prod_name
2 Nike shoes
3 Addidas shoes
Now in asp.net, I would like to bind my gridview and display Table 1, but instead of custProd_id , I would like to display prod_name. How do I Join these 3 tables and bind them in gridview in asp.net. Any favour is appreciated. Thank you in advance.