SQL Join Everything From One Table With One Feild From Another Table? -


Is there a way to be included in all fields from Table A with only one field from Table B?

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

I think you want:

  selection of the table Please. *, TableB.someField  

Comments