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
. SELECT myTable.*, otherTable.foo, otherTable.bar...
myTable
e colunas foo
e bar
de otherTable
.