Is it possible to combine * syntax with table abbreviations?

I want to do something like:

"SELECT subfunds.* FROM subfunds S" +
" INNER JOIN funds F ON S.id_fund = F.id" +
" WHERE F.fund_short IN('" + stSQLFundList + "')"

The above code gets a syntax error

"invalid reference to FROM-clause entry for table "subfunds".

I already found that if I do

"SELECT * FROM subfunds S" +
" INNER JOIN funds F ON S.id_fund = F.id" +
" WHERE F.fund_short IN('" + stSQLFundList + "')"

then I get all fields from both tables rather than from the subfunds table only.

So how do I get all fields from the first table (and none of the other tables' fields) in my answer set while also being able to use the single-letter table abbreviations?

link|improve this question
2  
Google "SQL Injection Attack" – John Saunders Sep 24 '11 at 19:47
1  
IF you use a table alias, then you need to refer to the columns you want using that alias - so use SELECT s.* FROM subfunds s.... – marc_s Sep 24 '11 at 19:54
Thanks, it worked! – user962915 Sep 24 '11 at 22:31
feedback

1 Answer

up vote 1 down vote accepted

Change your code to this and you will get all fields from subfunds.

"SELECT S.* FROM subfunds S" +
" INNER JOIN funds F ON S.id_fund = F.id" +
" WHERE F.fund_short IN('" + stSQLFundList + "')"

If you are using an alias, then you want to reference that table by it's alias.

link|improve this answer
Thank you, that worked! I could swear I tried that variant, but maybe some other aspect of the syntax was different... – user962915 Sep 24 '11 at 22:26
if it worked, make sure you accept the answer. :) – bluefeet Sep 24 '11 at 23:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.