omegatemplar
Programmer
I have 20 or so tables which share one field.
To start off on a low level I want to join all the fields of the tables on the common field, but I am having trouble getting rid of the common field being duplicated in the results
SELECT * FROM table1 INNER JOIN table2 ON table1.a = table2.a
Do I explicitly state all the fields I want in the result or is there a way to have the common field show up a single time instead of multiple times?
To start off on a low level I want to join all the fields of the tables on the common field, but I am having trouble getting rid of the common field being duplicated in the results
SELECT * FROM table1 INNER JOIN table2 ON table1.a = table2.a
Do I explicitly state all the fields I want in the result or is there a way to have the common field show up a single time instead of multiple times?