Hi frds,
My table1 fields are
| Item Code | Item Name | Quantity |
| 1 | Item1 | 300 |
My table2 Fields are
| Job No | Item Code | Item Name | Quantity |
| 1 | 1 | Item1 | 150 |
| 2 | 1 | Item1 | 150 |
When i join this two table, the result will be
| Item Code | Item Name | Quantity | Job No | Item Code | Item Name | Quantity |
| 1 | Item1 | 300 | 1 | 1 | Item1 | 150 |
| 2 | 1 | Item1 | 150 |
like this.I don't know how proceed this. any one guide me.
Thank You
Gowtham KPosted Dec 30, 2015, 4:45 AM
Mekalamani VPosted Dec 30, 2015, 4:32 AM
Rajeesh MenothPosted Dec 28, 2015, 10:28 AM
Gowtham KPosted Dec 28, 2015, 10:16 AM
Mekalamani VPosted Dec 28, 2015, 9:10 AM
Rajeesh MenothPosted Dec 28, 2015, 8:27 AM
Sandy SurwasePosted Dec 28, 2015, 8:22 AM
FROM table1
LEFT JOIN table2
ON table1.column_name=table2.column_name;
LEFT JOIN table2
Accept the answer if it's help you.