Results 1 to 2 of 2
  1. #1
    jsoldi is offline Novice
    Windows Vista Access 2010 (version 14.0)
    Join Date
    Oct 2010
    Posts
    2

    "Join expression not supported"?

    Why do I get a "Join expression not supported" when trying to run this query:



    Code:
    SELECT 
    	[Links].[Category],
    	[Links].[Description],
    	[Links].[linkId],
    	[Links].[links],
    	[Topics].[topicId],
    	[Topics].[Topics],
    	[Content].[Content]
    FROM 
    (([Links]
    	LEFT JOIN [Topics] ON [Links].[linkId] = [Topics].[linkId])
    	LEFT JOIN [Content] ON ([Links].[linkId] = [Content].[linkId] AND [Topics].[topicId] = [Content].[topicId]))
    I made sure all the columns and tables used in this query exists.

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    The second part of the second JOIN (between Content and Links) mentions a different table, Topics. I'm not sure what the relationships are between the 3 tables, but that would appear to be incorrect. The simplest solution is probably to put that query in design view and draw the joins visually, then see how Access creates the SQL.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 13
    Last Post: 12-05-2011, 05:10 AM
  2. Object not supported "ERROR"
    By Casper2012 in forum Forms
    Replies: 1
    Last Post: 08-24-2011, 06:31 PM
  3. Replies: 8
    Last Post: 08-05-2011, 02:55 PM
  4. Join Expression not Supported
    By amegahed3 in forum Queries
    Replies: 6
    Last Post: 09-29-2010, 01:28 PM
  5. Join Expression Not Supported
    By ubsman in forum Queries
    Replies: 3
    Last Post: 04-30-2009, 08:36 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums