Respuestas:
Solo usa el nombre de la tabla:
SELECT myTable.*, otherTable.foo, otherTable.bar...
Eso seleccionaría todas las columnas de myTable
y columnas foo
y bar
de otherTable
.
Usando alias para hacer referencia a las tablas para obtener las columnas de diferentes tablas después de unirlas.
Select tb1.*, tb2.col1, tb2.col2 from table1 tb1 JOIN table2 tb2 on tb1.Id = tb2.Id