I am have multiple mySQL tables that each have the same primary key but different columns. For instance, one table has a bunch of information about engine type and another table has information about transmissions. The VIN is used as the primary key in both tables.
I need to combine these tables into one larger table (the "master table) where the VIN is the primary key followed by all the columns from every table. I am doing this so that I can export a "master table" that contains all the vehicle information, as one table.
I am trying to do this without a bunch of SELECT (col1,col2,col3,....) in order to make it simple and save time, if that's possible.
Thanks!