Can some one point out to me the error in this sql statement?
The error highlights the subsequent SELECT statement as the source of the error.
Thanks
Code:
SELECT CommTypes.Description
FROM CommTypes LEFT JOIN
(SELECT *
FROM IntroducerBasis
WHERE IntroducerBasis.IntroducerCode ='AG'
AND IntroducerBasis.BasisNumber=1)
AS Intro
ON CommTypes.ID = Intro.CommTypeID;
Thanks
Comment