tags:

views:

24

answers:

1

Is there a way to specify a join on all fields from table A with only one field from table B?

Is it necessary to specify each individual field from each table instead of using the all symbol (*) for one of the tables?

+2  A: 

I think you want to:

select tableA.*, tableB.someField
RMorrisey
That's the ticket! Thanks.
painperdu