Results 1 to 4 of 4
  1. #1
    jesusw00t is offline Novice
    Windows XP Access 2000
    Join Date
    May 2013
    Posts
    3

    Question "Join Opertation not supported" MS-ACCESS 2000/JET help with this query please?

    This Query Dose NOT work in Access 2000

    Code:
    SELECT Members.First_Name + ' ' + Members.Last_Name AS Member, iif(isNull(Friends.My_E_Mail), Friends.My_E_Mail, Friends.Friend_E_Mail) AS E_Mail, Members.First_Name AS Name 
    FROM ((Members LEFT OUTER JOIN Friends ON Members.E_Mail = Friends.My_E_Mail AND Friends.Friend_E_Mail = ?) 
    LEFT OUTER JOIN Friends Friends_1 ON Members.E_Mail = Friends.Friend_E_Mail AND Friends.My_E_Mail = ?)
    Sample Tables

    Code:
       Members(all VARCHAR)     SOME DATA
        First_Name               Alester Jude Carl Jones
        Last_Name                A       B    C    J
        
        FRIENDS(ALL VARCHAR)
        My_E_Mail               Alester@lam.com Alester@lam.com  Alester@lam.com
        Friend_E_Mail           jude@lam.com    carl@lam.com   jones@lam.com

    Desired Output if ("?" in above query is: jones@lam.com)



    Code:
       +--------------+-----------+------------+
        |Member        |E_Mail     |  Name      |
        +---------------------------------------+
         Alester A   Alester@lam.com  Alester



    Desired Output if("?" in above query is: Alester@lam.com)

    Code:
      +--------------+-----------+------------+
        |Member        |E_Mail     |  Name      |
        +---------------------------------------+
         Jude B        jude@lam.com  Jude
         carl C        carl@lam.com  Carl
         Jones J       jones@lam.com Jones
    PS the "?" are query string parameters that im passing in the "?" i know that works fine.


    MY QUESTION IS : i keep getting this error "JOIN OPERATION NOT SUPPORTED"

    is their a work around query i can use without using a stored procedure or using multiple queries since this needs to be ONE SINGLE QUERY!?

    Thanks
    Last edited by jesusw00t; 05-15-2013 at 02:33 PM. Reason: changed query

  2. #2
    boblarson is offline --------
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2011
    Posts
    1,272
    It is just LEFT JOIN not LEFT OUTER JOIN.

  3. #3
    jesusw00t is offline Novice
    Windows XP Access 2000
    Join Date
    May 2013
    Posts
    3
    i know access changes it for me still have same problem "JOIN NOT SUPPORTED"

  4. #4
    jesusw00t is offline Novice
    Windows XP Access 2000
    Join Date
    May 2013
    Posts
    3
    anyone know?

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

Similar Threads

  1. Replies: 2
    Last Post: 11-14-2012, 04:47 PM
  2. Export "Query or Report" to a "Delimited Text File"
    By hawzmolly in forum Import/Export Data
    Replies: 3
    Last Post: 08-31-2012, 08:00 AM
  3. "Join expression not supported"?
    By jsoldi in forum Queries
    Replies: 1
    Last Post: 08-29-2011, 01:21 PM
  4. Object not supported "ERROR"
    By Casper2012 in forum Forms
    Replies: 1
    Last Post: 08-24-2011, 06:31 PM

Tags for this Thread

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