mysql select all fields from one table and some from another code example
Example: sql get all columns from one table but one from another inner join
SELECT myTable.*, otherTable.foo, otherTable.bar...
SELECT myTable.*, otherTable.foo, otherTable.bar...