Hi
I have created three tables and now I want to compare two tables and save the matching results to existing third table. The problem is I cannot seem to save anything. Here is what I did
Quote:
SELECT * FROM table1
WHERE tableA.columnB = tableB.columnB
ORDER BY columnB;
|
Then I tried JOIN, NATURAL JOIN, and INJOIN .. Maybe I had an indecent syntax..anyway nothing worked out so far.
FYI : Table A, B and C have the exact similar format. Column B is defined as an integer. My database exceed 5Gb..
