SELECT
CaseParticipantRole.caseParticipantRoleID,
CaseParticipantRole.participantRoleID,
CaseParticipantRole.fromDate,
CaseParticipantRole.toDate,
CaseParticipantRole.typeCode,
CaseParticipantRole.recordStatus,
CaseParticipantRole.comments,
CaseParticipantRole.versionNo,
ConcernRole.concernRoleName
INTO
:caseParticipantRoleID,
:participantRoleID,
:fromDate,
:toDate,
:typeCode,
:recordStatus,
:comments,
:versionNo,
:fullName
FROM
CaseParticipantRole,
ConcernRole
WHERE CaseParticipantRole.caseParticipantRoleID = :caseParticipantRoleID
AND ConcernRole.concernRoleID = CaseParticipantRole.participantRoleID
|