I'm looking to join tableA
with tableB
to get a series of resulting data.
I need the JOIN
with tableA
and tableB
to ensure I get the correct values from tableA
, however, I don't want any of the values from tableB
when I fetch the results.
I appreciate that I can do the following:
SELECT a.col1, a.col2, a.col3 FROM tableA AS a
etc
I'm looking for a neater way, maybe with some cool new keyword I haven't come across before? (Here's hoping).
Thank you in advance.