I am not a sybase expert but this query would work in oracle or access but doesn't work in sybase.
SELECT SW_CASE.swCaseId , DS_SURVEY.gr7RootCause, SW_CASE.grKeyword1
FROM SW_CASE , DS_SURVEY
where SW_CASE.swCaseId *= DS_SURVEY.swCaseId
and SW_CASE.swDateCreated Between '9/1/2002' And '9/10/2002'
AND SW_CASE.swStatus='Closed-Resolved'
AND (DS_SURVEY.gr7RootCause = 'MARCH' or SW_CASE.grKeyword1= 'MARCH')
I am putting criteria on both sides of the outer join. Is this not possible in sybase?
Trisha
padinka@yahoo.com
SELECT SW_CASE.swCaseId , DS_SURVEY.gr7RootCause, SW_CASE.grKeyword1
FROM SW_CASE , DS_SURVEY
where SW_CASE.swCaseId *= DS_SURVEY.swCaseId
and SW_CASE.swDateCreated Between '9/1/2002' And '9/10/2002'
AND SW_CASE.swStatus='Closed-Resolved'
AND (DS_SURVEY.gr7RootCause = 'MARCH' or SW_CASE.grKeyword1= 'MARCH')
I am putting criteria on both sides of the outer join. Is this not possible in sybase?
Trisha
padinka@yahoo.com