Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 319 Bytes

select-all-columns-from-joined-table-and-some-from-other-table.md

File metadata and controls

9 lines (6 loc) · 319 Bytes

Select all columns from the joined table and some from the other

This would select all the columns from the myTable.

SELECT myTable.*, otherTable.foo, otherTable.bar...

Got it from here