Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Error #700 in FROM Clause
Tue, Mar 6 2007 7:38 PMPermanent Link

Richard Harding
The following SQL Statement gives an error #700 at line 4 and column 7 (Invalid expression
"ClientPractitioner" found, this table is the target of multiple join conditions)

SELECT *
  FROM
     Configuration,
     ClientPractitioner
        RIGHT OUTER JOIN Client
           ON ClientPractitioner.ClientID = Client.ID
        LEFT OUTER JOIN Client AS Practitioner
           ON ClientPractitioner.PractitionerID = Practitioner.ID

If the Configuration table is moved to the end of the statement then it works.

SELECT *
  FROM
     ClientPractitioner
        RIGHT OUTER JOIN Client
           ON ClientPractitioner.ClientID = Client.ID
        LEFT OUTER JOIN Client AS Practitioner
           ON ClientPractitioner.PractitionerID = Practitioner.ID,
     Configuration
Wed, Mar 7 2007 11:17 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Richard,

<< The following SQL Statement gives an error #700 at line 4 and column 7
(Invalid expression "ClientPractitioner" found, this table is the target of
multiple join conditions) >>

Ok, got it.   A fix will be in build 2.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image