Hi all, may i know how to perform join on two table?
I tried using join but it is not the result that i want.
Below is my SQL Code:
SELECT *
I want the table to show all the fields in both table 1 and table 2
I tried using join but it is not the result that i want.
Below is my SQL Code:
SELECT *
Code:
FROM Table1 INNER JOIN Table2 ON Table1.PO = Table2.PO;
I want the table to show all the fields in both table 1 and table 2