Skip to content
Advertisement

LEFT JOIN: The multi-part identifier “_” could not be bound

For the below query

I am getting following error:

Earlier these were implicit joins but trying to resolve i changed them to explicit inner joins but still I am getting this error. What can I try next?

Advertisement

Answer

Never use commas in the FROM clause. Always use proper, explicit JOIN syntax.

So, write the FROM clause as:

You no longer need a WHERE clause.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement