how to select all from a table in sql but certain from anotehr code example
Example: sql select all from one table and one column from another
SELECT myTable.*, otherTable.foo, otherTable.bar...
SELECT myTable.*, otherTable.foo, otherTable.bar...