Respostas:
Basta usar o nome da tabela:
SELECT myTable.*, otherTable.foo, otherTable.bar...
Isso selecionaria todas as colunas de myTable
e colunas foo
e bar
de otherTable
.
Usando o alias para fazer referência às tabelas para obter as colunas de tabelas diferentes depois de ingressar nelas.
Select tb1.*, tb2.col1, tb2.col2 from table1 tb1 JOIN table2 tb2 on tb1.Id = tb2.Id